AgentValue.cpp00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <VCardAgentValue.h>
00025
00026 #include <VCardValue.h>
00027
00028 using namespace VCARD;
00029
00030 AgentValue::AgentValue()
00031 : Value()
00032 {
00033 }
00034
00035 AgentValue::AgentValue(const AgentValue & x)
00036 : Value(x)
00037 {
00038 }
00039
00040 AgentValue::AgentValue(const QCString & s)
00041 : Value(s)
00042 {
00043 }
00044
00045 AgentValue &
00046 AgentValue::operator = (AgentValue & x)
00047 {
00048 if (*this == x) return *this;
00049
00050 Value::operator = (x);
00051 return *this;
00052 }
00053
00054 AgentValue &
00055 AgentValue::operator = (const QCString & s)
00056 {
00057 Value::operator = (s);
00058 return *this;
00059 }
00060
00061 bool
00062 AgentValue::operator == (AgentValue & x)
00063 {
00064 x.parse();
00065 return false;
00066 }
00067
00068 AgentValue::~AgentValue()
00069 {
00070 }
00071
00072 void
00073 AgentValue::_parse()
00074 {
00075 }
00076
00077 void
00078 AgentValue::_assemble()
00079 {
00080 }
00081
|