TextListValue.cpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <VCardRToken.h>
00025
00026 #include <VCardTextListValue.h>
00027
00028 #include <VCardValue.h>
00029
00030 using namespace VCARD;
00031
00032 TextListValue::TextListValue()
00033 : Value()
00034 {
00035 }
00036
00037 TextListValue::TextListValue(const TextListValue & x)
00038 : Value(x)
00039 {
00040 }
00041
00042 TextListValue::TextListValue(const QCString & s)
00043 : Value(s)
00044 {
00045 }
00046
00047 TextListValue &
00048 TextListValue::operator = (TextListValue & x)
00049 {
00050 if (*this == x) return *this;
00051
00052 Value::operator = (x);
00053 return *this;
00054 }
00055
00056 TextListValue &
00057 TextListValue::operator = (const QCString & s)
00058 {
00059 Value::operator = (s);
00060 return *this;
00061 }
00062
00063 bool
00064 TextListValue::operator == (TextListValue & x)
00065 {
00066 x.parse();
00067 return false;
00068 }
00069
00070 TextListValue::~TextListValue()
00071 {
00072 }
00073
00074 void
00075 TextListValue::_parse()
00076 {
00077 RTokenise(strRep_, ";", valueList_);
00078 }
00079
00080 void
00081 TextListValue::_assemble()
00082 {
00083 bool first(true);
00084
00085 QStrListIterator it(valueList_);
00086
00087 for (; it.current(); ++it) {
00088 if (!first) strRep_ += ';';
00089 strRep_ += it.current();
00090 first = false;
00091 }
00092 }
00093
00094 unsigned int
00095 TextListValue::numValues()
00096 {
00097 parse();
00098 return valueList_.count();
00099 }
00100
00101 QCString
00102 TextListValue::value(unsigned int i)
00103 {
00104 parse();
00105 return valueList_.at(i);
00106 }
00107
This file is part of the documentation for kdelibs Version 3.1.4.