![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2001 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: baseMapper.h,v $ $Revision: 1.4 $ $State: Exp $ 00007 *********************************************************************/ 00008 00011 00012 #ifndef BASEMAPPER_H_ 00013 #define BASEMAPPER_H_ 00014 00015 #include "archiver/archivableObject.h" 00016 #include "symbolMapper/symbolMapperDefines.h" 00017 #include "ngutil/dtqlist.h" 00018 00019 class DtDescriptor; 00020 class DtSymbolDescriptor; 00021 00022 typedef DtPtrQList<DtSymbolDescriptor*> DtSDList; 00023 00024 class DT_DLL_symbolMapper DtBaseMapper : public DtArchivableObject 00025 { 00026 public: 00027 DtBaseMapper(); 00028 00029 virtual ~DtBaseMapper(); 00030 00031 virtual bool addSymbolToList(DtDescriptor* sd, bool replace = false) = 0; 00032 00033 virtual void getSymbolDescriptors(DtSDList*) const = 0; 00034 }; 00035 00036 00037 #endif //BASEMAPPER_H_ 00038