![]() |
VR-Link API Documentation for HLA Evolved
|
00001 /****************************************************************************** 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 00006 00010 00011 #ifndef envReader_H_ 00012 #define envReader_H_ 00013 00014 #include "env.h" 00015 00016 #ifdef DtUSE_UTILITIES_NAMESPACE 00017 namespace DtUSE_UTILITIES_NAMESPACE 00018 { 00019 #endif 00020 00023 class DT_DLL_MTL DtEnvReader 00024 { 00025 public: 00026 00028 DtEnvReader(){} 00029 00031 virtual ~DtEnvReader(){} 00032 00033 virtual DtEnvironment readFile(const DtString& filename,bool& success) = 0; 00034 }; 00035 00036 #ifdef DtUSE_UTILITIES_NAMESPACE 00037 } 00038 #endif 00039 00040 #endif