![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2001 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: baseDrawerColl.h,v $ $Revision: 1.13 $ $State: Exp $ 00007 *********************************************************************/ 00008 00011 00012 #ifndef DtBaseDrawerColl_H_ 00013 #define DtBaseDrawerColl_H_ 00014 00016 #include <symbolDrawerInterface/symbolDrawer.h> 00017 #include <symbolDrawerInterface/drawerColl.h> 00018 #include "symbolDrawer/bmpDrawer.h" 00019 #include "symbolDrawerInterface/nullDrawer.h" 00020 00021 00024 #include "symbolDrawer/symbolDrawerDefines.h" 00025 00026 class DT_DLL_symbolDrawer DtBaseDrawerColl : public DtDrawerColl 00027 { 00028 public: 00029 00030 DtBaseDrawerColl(); 00031 DtBaseDrawerColl( DtDrawerColl * nextComponent ); 00032 virtual ~DtBaseDrawerColl(); 00033 00034 virtual DtSymbolDrawer * lookupDrawer( const DtDrawerKey & key ); 00035 00036 private: 00038 DtBaseDrawerColl(const DtBaseDrawerColl& orig); 00039 00041 DtBaseDrawerColl& operator=(const DtBaseDrawerColl& orig); 00042 00043 protected: 00044 DtNullDrawer myNullDrawer; 00045 DtBMPDrawer myBMPDrawer; 00046 }; 00047 00048 #endif 00049