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