![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtStealthMtlHeaderParser.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #ifndef DtStealthMtlHeaderParser_H_ 00014 #define DtStealthMtlHeaderParser_H_ 00015 00016 #include <vrvTerrain/vrvTerrain.h> 00017 #include <vrvCore/DtHeaderParser.h> 00018 00019 namespace makVrv 00020 { 00023 class DT_DLL_VRVTERRAIN DtStealthMtlHeaderParser : public DtHeaderParser 00024 { 00025 00026 public: 00027 00029 DtStealthMtlHeaderParser(const std::string& filePath); 00030 00032 virtual ~DtStealthMtlHeaderParser(); 00033 00036 virtual bool isValid(); 00037 00038 protected: 00039 00041 void addTerrainPatchRecord(const std::string& filename); 00042 00043 }; 00044 00047 class DT_DLL_VRVTERRAIN DtStealthMtlHeaderParserCreator : public DtHeaderParserCreator 00048 { 00049 00050 public: 00051 00053 DtStealthMtlHeaderParserCreator(); 00054 00056 virtual ~DtStealthMtlHeaderParserCreator(); 00057 00059 virtual DtHeaderParser* create(DtDe& de, const std::string& filePath) const; 00060 00061 }; 00062 } 00063 00064 #endif 00065