TelValue.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 <VCardTelValue.h>
00025 
00026 #include <VCardValue.h>
00027 
00028 using namespace VCARD;
00029 
00030 TelValue::TelValue()
00031     :   Value()
00032 {
00033 }
00034 
00035 TelValue::TelValue(const TelValue & x)
00036     :   Value(x)
00037 {
00038 }
00039 
00040 TelValue::TelValue(const QCString & s)
00041     :   Value(s)
00042 {
00043 }
00044 
00045     TelValue &
00046 TelValue::operator = (TelValue & x)
00047 {
00048     if (*this == x) return *this;
00049 
00050     Value::operator = (x);
00051     return *this;
00052 }
00053 
00054     TelValue &
00055 TelValue::operator = (const QCString & s)
00056 {
00057     Value::operator = (s);
00058     return *this;
00059 }
00060 
00061     bool
00062 TelValue::operator == (TelValue & x)
00063 {
00064     x.parse();
00065     return false;
00066 }
00067 
00068 TelValue::~TelValue()
00069 {
00070 }
00071 
00072     void
00073 TelValue::_parse()
00074 {
00075 }
00076 
00077     void
00078 TelValue::_assemble()
00079 {
00080 }
00081 
 
This file is part of the documentation for kabc Library Version 3.2.0.