![]() |
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 "datatypeRep.h" 00010 00011 #include <vlutil/vlString.h> 00012 00015 class DT_DLL_OMTREADER DtUnicodeDatatypeRep : public DtDatatypeRep 00016 { 00017 public: 00018 00020 DtUnicodeDatatypeRep(); 00021 00023 virtual ~DtUnicodeDatatypeRep(); 00024 00026 DtUnicodeDatatypeRep(const DtUnicodeDatatypeRep& orig); 00027 00029 DtUnicodeDatatypeRep& operator=(const DtUnicodeDatatypeRep& rhs); 00030 00032 virtual const char* datatype() const; 00033 00035 virtual DtString stringRep(const void* ptr, int* size = 0) const; 00036 }; 00037 00038 00039