• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdeabc
 

tdeabc

  • tdeabc
  • vcard
URIValue.cpp
1 /*
2  libvcard - vCard parsing library for vCard version 3.0
3 
4  Copyright (C) 1998 Rik Hemsley rik@kde.org
5 
6  Permission is hereby granted, free of charge, to any person obtaining a copy
7  of this software and associated documentation files (the "Software"), to
8  deal in the Software without restriction, including without limitation the
9  rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10  sell copies of the Software, and to permit persons to whom the Software is
11  furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20  ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23 
24 #include <VCardURIValue.h>
25 
26 #include <VCardValue.h>
27 
28 using namespace VCARD;
29 
30 URIValue::URIValue()
31  : Value()
32 {
33 }
34 
35 URIValue::URIValue(const TQCString & scheme, const TQCString & schemeSpecificPart)
36  : Value(),
37  scheme_ (scheme),
38  schemeSpecificPart_ (schemeSpecificPart)
39 {
40  parsed_ = true;
41 }
42 
43 URIValue::URIValue(const URIValue & x)
44  : Value (x),
45  scheme_ (x.scheme_),
46  schemeSpecificPart_ (x.schemeSpecificPart_)
47 {
48 }
49 
50 URIValue::URIValue(const TQCString & s)
51  : Value(s)
52 {
53 }
54 
55  URIValue &
56 URIValue::operator = (URIValue & x)
57 {
58  if (*this == x) return *this;
59 
60  scheme_ = x.scheme_;
61  schemeSpecificPart_ = x.schemeSpecificPart_;
62 
63  Value::operator = (x);
64  return *this;
65 }
66 
67  URIValue &
68 URIValue::operator = (const TQCString & s)
69 {
70  Value::operator = (s);
71  return *this;
72 }
73 
74  bool
75 URIValue::operator == (URIValue & x)
76 {
77  x.parse();
78  return (
79  (scheme_ == x.scheme_) &&
80  (schemeSpecificPart_ == x.schemeSpecificPart_));
81 
82  return false;
83 }
84 
85 URIValue::~URIValue()
86 {
87 }
88 
89  void
90 URIValue::_parse()
91 {
92  int split = strRep_.find(':');
93  if (split == -1)
94  return;
95 
96  scheme_ = strRep_.left(split);
97  schemeSpecificPart_ = strRep_.mid(split + 1);
98 }
99 
100  void
101 URIValue::_assemble()
102 {
103  strRep_ = scheme_ + ':' + schemeSpecificPart_;
104 }
105 
106  TQCString
107 URIValue::scheme()
108 {
109  parse();
110  return scheme_;
111 }
112 
113  TQCString
114 URIValue::schemeSpecificPart()
115 {
116  parse();
117  return schemeSpecificPart_;
118 }
119 
120  void
121 URIValue::setScheme(const TQCString & s)
122 {
123  parse();
124  scheme_ = s;
125 }
126 
127  void
128 URIValue::setSchemeSpecificPart(const TQCString & s)
129 {
130  parse();
131  schemeSpecificPart_ = s;
132 }
133 
VCARD
Definition: VCardAdrParam.h:32

tdeabc

Skip menu "tdeabc"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

tdeabc

Skip menu "tdeabc"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  •     tdecore
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  • tdeioslave
  •   http
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdeabc by doxygen 1.8.8
This website is maintained by Timothy Pearson.