![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2003 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: dfdReader.h,v $ $Revision: 1.12 $ $State: Exp $ 00007 *******************************************************************************/ 00008 #pragma once 00009 #ifndef DtDfdDfadReader_H_ 00010 #define DtDfdDfadReader_H_ 00011 00012 #ifndef NO_DFD_SUPPORT 00013 00014 // \file dfdReader.h 00015 // \brief Contains the DtDfdDfadReader class declaration. 00016 00017 #include "flt/fltDefines.h" 00018 #include <vlutil/vlFilename.h> 00019 #include "dted/dfadReader.h" 00020 #include "dted/dfad_data.h" 00021 #include "flt/mgWrapperInterface.h" 00022 00023 class DtTerrainDatabase; 00024 class DtVectorDataInitializer; 00025 class DtDfdDfadInitializer; 00026 00027 class DT_DLL_flt DtDfdDfadReader : public DtDfadReader 00028 { 00029 public: 00030 00031 // constructor 00032 DtDfdDfadReader(); 00033 00034 // destructor 00035 virtual ~DtDfdDfadReader(); 00036 00037 // Import dfad/dfd data into the gdb, using the list in importingListFilename and 00038 // cropping/not cropping the data to the size of the gdb. 00039 virtual bool importVectorData(const DtFilename& path, DtTerrainDatabase* terrain, DtVectorDataInitializer* myInit); 00040 00041 virtual DtString dataType(); 00042 00043 static DtVectorDataReader* create(); 00044 protected: 00045 DtMgWrapperInterface* myMgWrapperInterface; 00046 00047 }; 00048 00049 inline DtString DtDfdDfadReader::dataType() 00050 { 00051 return "dfdDfad"; 00052 } 00053 00054 #endif 00055 00056 #endif