![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: $ $Revision: $ $State: $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 #include <vrvCore/vrvCore.h> 00015 #include <vrvUtil/DtVirtualBaseClass.h> 00016 00017 namespace makVrv 00018 { 00019 class DtArealFeature; 00020 class DtArealFeatureVisualizer; 00021 00025 class DT_DLL_VRVCORE DtArealFeatureVisualizerFactory : public DtVirtualBaseClass 00026 { 00027 public: 00028 00030 static DtArealFeatureVisualizerFactory& instance(DtDe&); 00031 00034 static void registerInstance(DtDe&, DtArealFeatureVisualizerFactory*); 00035 00037 virtual ~DtArealFeatureVisualizerFactory(); 00038 00040 virtual DtArealFeatureVisualizer* create(DtArealFeature*); 00041 00042 protected: 00043 DtArealFeatureVisualizerFactory(DtDe&); 00044 00045 protected: 00046 DtDe& myDe; 00047 }; 00048 } 00049