![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2009 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: DtGlStudioObjectAttributeUpdater.h,v $ $Revision: 1.3 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00012 00013 00014 #ifndef DtGlStudioObjectAttributeUpdater_h 00015 #define DtGlStudioObjectAttributeUpdater_h 00016 00017 #include <vrvGlStudioShared/DtGlStudioAttributeUpdater.h> 00018 00019 class DtSmoother; 00020 00021 namespace makVrv 00022 { 00023 class DtDe; 00024 00028 class DT_DLL_VRVGLSTUDIOSHARED DtGlStudioObjectAttributeUpdater : public DtGlStudioAttributeUpdater 00029 { 00030 public: 00031 DtGlStudioObjectAttributeUpdater(); 00032 virtual ~DtGlStudioObjectAttributeUpdater(); 00033 00035 virtual void init(DtSmoother* smoother, DtDe* de); 00036 00038 virtual std::string value(double time)=0; 00039 00042 virtual std::string value() {return "";} 00043 00044 protected: 00045 DtSmoother* mySmoother; 00046 DtDe* myDe; 00047 }; 00048 00049 } //makVrv:: 00050 00051 #endif 00052