00001
00002
00007 #ifndef __COMMAND_H__
00008 #define __COMMAND_H__
00009
00010 #include <string>
00011 #include "libepp_nicbr.H"
00012
00013 using std::string;
00014
00015 LIBEPP_NICBR_NS_BEGIN
00016
00018 class Command
00019 {
00020 public:
00022 Command(bool reset = true)
00023 {
00024 if (reset) {
00025 this->reset();
00026 }
00027 }
00028
00030
00033 void reset()
00034 {
00035 _clTRID = "";
00036 }
00037
00039 ~Command() {}
00040
00042
00045 void set_clTRID(const string &clTRID)
00046 {
00047 _clTRID = clTRID;
00048 }
00049
00051
00054 string get_clTRID()
00055 {
00056 return _clTRID;
00057 }
00058
00059 protected:
00061 string _clTRID;
00062
00063 };
00064
00065 LIBEPP_NICBR_NS_END
00066 #endif //__COMMAND_H__