Go to the documentation of this file.00001
00002
00003
00004
00007 #pragma once
00008 #include <omtReader.h>
00009 #include <vlutil/vlString.h>
00010 #include <sstream>
00011
00012 #define MAKE_STRING( msg ) ( ((std::ostringstream&) \
00013 (std::ostringstream() << msg)).str() )
00014
00019 class DT_DLL_OMTREADER DtDatatypeRep
00020 {
00021 public:
00022
00024 virtual const char* datatype() const = 0;
00025
00031 virtual DtString stringRep(const void* ptr, int* size = 0) const = 0;
00032 };
00033
00034