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 <VCardOrgValue.h>
00027
00028
#include <VCardValue.h>
00029
00030
using namespace VCARD;
00031
00032 OrgValue::OrgValue()
00033 : Value()
00034 {
00035 }
00036
00037 OrgValue::OrgValue(
const OrgValue & x)
00038 : Value(x)
00039 {
00040 }
00041
00042 OrgValue::OrgValue(
const QCString & s)
00043 : Value(s)
00044 {
00045 }
00046
00047 OrgValue &
00048 OrgValue::operator = (OrgValue & x)
00049 {
00050
if (*
this == x)
return *
this;
00051
00052 Value::operator = (x);
00053
return *
this;
00054 }
00055
00056 OrgValue &
00057 OrgValue::operator = (
const QCString & s)
00058 {
00059 Value::operator = (s);
00060
return *
this;
00061 }
00062
00063
bool
00064 OrgValue::operator == (OrgValue & x)
00065 {
00066 x.parse();
00067
return false;
00068 }
00069
00070 OrgValue::~OrgValue()
00071 {
00072 }
00073
00074
void
00075 OrgValue::_parse()
00076 {
00077 RTokenise(strRep_,
";", valueList_);
00078 }
00079
00080
void
00081 OrgValue::_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 OrgValue::numValues()
00096 {
00097 parse();
00098
return valueList_.count();
00099 }
00100
00101
QCString
00102 OrgValue::value(
unsigned int i)
00103 {
00104 parse();
00105
return valueList_.at(i);
00106 }
00107