Go to the documentation of this file.00001
00002
00003
00004
00007 #pragma once
00008
00009 #include "omtNode.h"
00010
00011 #include <vlutil/vlString.h>
00012
00013 class DT_DLL_OMTREADER DtTagNode : public DtOMTNode
00014 {
00015 public:
00016
00018 DtTagNode();
00019
00021 virtual ~DtTagNode();
00022
00023 virtual void setDatatype(const DtString&);
00024 virtual const DtString& getDatatype();
00025
00026 virtual void setDescription(const DtString&);
00027 virtual const DtString& getDescription();
00028
00029 private:
00030
00032 DtTagNode(const DtTagNode& orig);
00033
00035 DtTagNode& operator=(const DtTagNode& rhs);
00036
00037 protected:
00038 DtString myDatatype;
00039 DtString myDescription;
00040
00041 };
00042
00043