![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtVrfPropAdder.h,v $ $Revision: 1.1.2.1 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrfGuiCore/vrfGuiCore.h> 00016 #include <vrvCore/DtPropAdder.h> 00017 00018 namespace makVrf 00019 { 00020 class DtDe; 00021 class DtAgentManagerInterface; 00022 class DtProp; 00023 class DtTerrainLayer; 00024 00028 class DT_DLL_VRFGUICORE DtVrfPropAdder 00029 { 00030 public: 00031 00033 DtVrfPropAdder( makVrv::DtDe& de, makVrv::DtAgentManagerInterface& agentManagerInterface); 00034 00036 virtual ~DtVrfPropAdder(); 00037 00039 virtual void addProp( makVrv::DtTerrainLayer* layer, const std::string& propType, const std::string& modelDef, 00040 double posX, double posY, double posZ, 00041 double orientationX=0.0, double orientationY=0.0, double orientationZ=0.0, double orientationW=1.0); 00042 00043 protected: 00044 makVrv::DtDe& myDe; 00045 makVrv::DtAgentManagerInterface& myAgentInterface; 00046 }; 00047 }