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