![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtMetaFlightHeaderParser.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #ifndef DtMetaFlightHeaderParser_H_ 00014 #define DtMetaFlightHeaderParser_H_ 00015 00016 #include <vrvTerrain/vrvTerrain.h> 00017 #include <vrvCore/DtHeaderParser.h> 00018 #include <string> 00019 00020 namespace makVrv 00021 { 00024 class DT_DLL_VRVTERRAIN DtMetaFlightHeaderParser : public DtHeaderParser 00025 { 00026 00027 public: 00028 00030 DtMetaFlightHeaderParser(const std::string& filePath); 00031 00033 virtual ~DtMetaFlightHeaderParser(); 00034 00037 virtual bool isValid(); 00038 00039 protected: 00040 00041 }; 00042 00045 class DT_DLL_VRVTERRAIN DtMetaFlightHeaderParserCreator : public DtHeaderParserCreator 00046 { 00047 public: 00048 00050 DtMetaFlightHeaderParserCreator(); 00051 00053 virtual ~DtMetaFlightHeaderParserCreator(); 00054 00056 virtual DtHeaderParser* create(DtDe& de, const std::string& filePath) const; 00057 00058 }; 00059 } 00060 00061 #endif 00062