VCardSourceParam.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef SOURCEPARAM_H
00025 #define SOURCEPARAM_H
00026
00027 #include <qcstring.h>
00028
00029 #include <VCardParam.h>
00030
00031 namespace VCARD
00032 {
00033
00034 class SourceParam : public Param
00035 {
00036
00037 #include "SourceParam-generated.h"
00038
00039 enum SourceParamType { TypeUnknown, TypeValue, TypeContext, TypeX };
00040
00041 SourceParamType type() { parse(); return type_;}
00042 QCString par() { parse(); return par_; }
00043 QCString val() { parse(); return val_; }
00044
00045 void setType(SourceParamType t) { type_ = t; assembled_ = false; }
00046 void setPar(const QCString & s) { par_ = s; assembled_ = false; }
00047 void setVal(const QCString & s) { val_ = s; assembled_ = false; }
00048
00049 private:
00050
00051 SourceParamType type_;
00052
00053 QCString par_, val_;
00054 };
00055
00056 }
00057
00058 #endif
This file is part of the documentation for kabc Library Version 3.3.0.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Thu Sep 23 17:13:01 2004 by
doxygen 1.3.8-20040913 written by
Dimitri van Heesch, © 1997-2003