![]() |
VR-Link API Documentation for HLA 1.3
|
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 DtAlternativeComponentNode : public DtOMTNode 00014 { 00015 public: 00016 00018 DtAlternativeComponentNode(); 00019 00021 virtual ~DtAlternativeComponentNode(); 00022 00024 DtAlternativeComponentNode(const DtAlternativeComponentNode& orig); 00025 00027 DtAlternativeComponentNode& operator=(const DtAlternativeComponentNode& orig); 00028 00029 virtual void setDatatype(const DtString&); 00030 virtual const DtString& getDatatype(); 00031 00032 virtual void setEnumerator(const DtString&); 00033 virtual const DtString& getEnumerator(); 00034 00035 virtual void setDescription(const DtString&); 00036 virtual const DtString& getDescription(); 00037 00038 00039 protected: 00040 DtString myDatatype; 00041 DtString myEnumerator; 00042 DtString myDescription; 00043 00044 }; 00045 00046