![]() |
VR-Link API Documentation for HLA 1516
|
00001 /******************************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *******************************************************************************/ 00007 #pragma once 00008 00009 #include <omtReader/omtReader.h> 00010 #include <vlutil/vlString.h> 00011 00012 class DT_DLL_OMTREADER DtNoteNode 00013 { 00014 public: 00015 00017 DtNoteNode(); 00018 00020 virtual ~DtNoteNode(); 00021 00023 DtNoteNode(const DtNoteNode& orig); 00024 00026 DtNoteNode& operator=(const DtNoteNode& rhs); 00027 00028 virtual void setText(const DtString&); 00029 virtual const DtString& getText(); 00030 00031 virtual void setNumber(int); 00032 virtual int getNumber(); 00033 00034 protected: 00035 DtString myText; 00036 int myNumber; 00037 00038 }; 00039 00040 00041