00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef SEN_BASE_ATTRIBUTE_H
00022 #define SEN_BASE_ATTRIBUTE_H
00023
00024
00025 #include <e32base.h>
00026 #include <s32strm.h>
00027
00028
00029
00038 class CSenBaseAttribute : public CBase
00039 {
00040 public:
00041
00051 IMPORT_C static CSenBaseAttribute* NewL(const TDesC8& aName,
00052 const TDesC8& aValue);
00053
00065 IMPORT_C static CSenBaseAttribute* NewL(const TDesC8& aQName,
00066 const TDesC8& aName,
00067 const TDesC8& aValue);
00068
00072 IMPORT_C virtual ~CSenBaseAttribute();
00073
00074
00075
00081 virtual const TDesC8& Name() const;
00082
00088 virtual const TDesC8& Value() const;
00089
00096 virtual const TDesC8& SetValueL(const TDesC8& aValue);
00097
00098 protected:
00099
00104 IMPORT_C CSenBaseAttribute();
00105
00116 IMPORT_C void BaseConstructL(const TDesC8& aName,
00117 const TDesC8& aValue);
00118
00128 IMPORT_C void BaseConstructL(const TDesC8& aName,
00129 const TDesC8& aQName,
00130 const TDesC8& aValue);
00131
00132 private:
00133 HBufC8* ipName;
00134 HBufC8* ipValue;
00135 };
00136
00137
00138 #endif
00139
00140
00141