00001 #ifndef ODLELEMENT_H
00002 #define ODLELEMENT_H
00003
00004 #include <string>
00005
00006 class ODLElement {
00007 protected:
00008 std::string mLbl;
00009 std::string mVal;
00010 std::string mTyp;
00011
00012 public:
00013 ODLElement( const std::string &lbl,
00014 const std::string &val,
00015 const std::string &typ="" ) :
00016 mLbl( lbl ),
00017 mVal( val ),
00018 mTyp( typ ) {
00019 }
00020
00021 std::string getLabel( ) {
00022 return mLbl;
00023 }
00024 std::string getValue( ) {
00025 return mVal;
00026 }
00027 };
00028
00029 #endif
00030
00031
00032