![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 1999 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: reportFactory.h,v $ $Revision: 1.6 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00012 00013 #ifndef DtSimReportFactory_H_ 00014 #define DtSimReportFactory_H_ 00015 00016 #include "vrfutil/stringAndIntKeyFactory.h" 00017 #include "vrftasks/vrftasksDefines.h" 00018 00019 class DtSimReport; 00020 00024 class DT_DLL_vrftasks DtSimReportFactory : public DtStringAndIntKeyFactory<DtSimReport> 00025 { 00026 public: 00027 DtSimReportFactory(); 00028 virtual ~DtSimReportFactory(); 00029 00032 00033 virtual DtSimReport* createReport(const DtString& type); 00034 virtual DtSimReport* createReport(int type); 00036 00037 static DtSimReportFactory* create(); 00038 00039 protected: 00041 virtual DtString creationTypeName() const; 00042 }; 00043 00044 typedef DtSimReportFactory::DtCreatorFcn DtSimReportCreatorFcn; 00045 00046 #endif 00047