00001 /******************************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *******************************************************************************/ 00007 #pragma once 00008 00009 #include "omtNode.h" 00010 00011 #include <vlutil/vlString.h> 00012 00013 class DT_DLL_OMTREADER DtDescriptionNode : public DtOMTNode 00014 { 00015 public: 00016 00018 DtDescriptionNode(); 00019 00021 virtual ~DtDescriptionNode(); 00022 00024 DtDescriptionNode(const DtDescriptionNode& orig); 00025 00027 DtDescriptionNode& operator=(const DtDescriptionNode& rhs); 00028 00029 virtual void setDescription(const DtString&); 00030 virtual const DtString& getDescription(); 00031 00032 00033 protected: 00034 DtString myDescription; 00035 00036 }; 00037 00038