![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2006 MAK Technologies, Inc.** All rights reserved. 00003 ******************************************************************************/ 00004 /****************************************************************************** 00005 * $RCSfile: vmapVectorReader.h,v $ $Revision: 1.8 $ $State: Exp $ 00006 ******************************************************************************/ 00007 00008 #ifndef VMAP_VECTOR_READER_H_ 00009 #define VMAP_VECTOR_READER_H_ 00010 00013 00014 #include <vlutil/vlFilename.h> 00015 #include "vmap/vmapDefines.h" 00016 #include "gdb/vectorDataReader.h" 00017 00018 //forward defs 00019 class DtTerrainDatabase; 00020 class DtVectorDataInitializer; 00021 class DtVmapInitializer; 00022 00025 class DT_DLL_vmap DtVmapReader : public DtVectorDataReader 00026 { 00027 private: 00029 DtVmapReader(const DtVmapReader& input); 00030 00032 DtVmapReader& operator=(const DtVmapReader& input); 00033 00034 public: 00036 DtVmapReader(); 00037 00039 virtual ~DtVmapReader(); 00040 00044 virtual bool importVectorData(const DtFilename& path, 00045 DtTerrainDatabase* terrain, 00046 DtVectorDataInitializer* myInit); 00047 00050 virtual DtString dataType(); 00051 00054 static DtVectorDataReader* create(); 00055 00056 protected: 00059 virtual bool importFeatures(DtVectorNetwork &data, DtVmapInitializer* init); 00060 }; 00061 00062 #endif 00063