![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2006 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: vrfSimPlanExecutor.h,v $ $Revision: 1.3 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00014 00015 #ifndef vrfSimPlanExecutor_H_ 00016 #define vrfSimPlanExecutor_H_ 00017 00018 #include "vrfplan/planExecutor.h" 00019 #include "vrfobjcore/vrfobjcoreDefines.h" 00020 00021 class DtVrfMessageInterface; 00022 class DtVrfObject; 00023 00029 00030 class DT_DLL_vrfobjcore DtVrfSimPlanExecutor : public DtPlanExecutor 00031 { 00032 private: 00034 DtVrfSimPlanExecutor(const DtVrfSimPlanExecutor& orig); 00036 DtVrfSimPlanExecutor& operator=(const DtVrfSimPlanExecutor& orig); 00037 00038 public: 00039 DtVrfSimPlanExecutor(DtVrfObject* vrfObject); 00040 virtual ~DtVrfSimPlanExecutor(); 00043 virtual bool executeSetDataRequest(const DtPlan& plan, const DtSetDataRequest& sdr); 00046 virtual bool executeTask(const DtPlan& plan, const DtSimTask& task); 00049 virtual bool executeSimCommand(const DtPlan& plan, const DtSimCommand& command); 00051 virtual bool evaluateConditional(const DtPlan& plan, const DtSimCondExpr* conditional); 00052 00054 virtual bool taskActive(int taskId) const; 00055 00057 virtual bool stopTask(int taskId); 00058 00059 protected: 00060 DtVrfObject* myVrfObject; 00061 }; 00062 00063 #endif