![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtCigiModelDefinitionRenamedChanged.h,v $ $Revision: 1.16 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00017 00018 #ifndef DtCigiModelDefinitionRenamedChanged_H_ 00019 #define DtCigiModelDefinitionRenamedChanged_H_ 00020 00021 #include <vrvCigi/vrvCigi.h> 00022 #include <vrvCore/DtSettingsChangeManager.h> 00023 00024 namespace makVrv 00025 { 00026 class DtDe; 00027 00031 class DT_DLL_VRVCIGI DtCigiModelDefinitionRenamedChanged : public DtSettingsChangeObject 00032 { 00033 public: 00034 DtCigiModelDefinitionRenamedChanged(DtDe& de); 00035 00036 virtual ~DtCigiModelDefinitionRenamedChanged(); 00037 00041 virtual void modelDefinitionRenamed(const std::string& oldName, const std::string& newName); 00042 00043 const std::string& oldName() const 00044 { 00045 return myOldName; 00046 } 00047 00048 const std::string& newName() const 00049 { 00050 return myNewName; 00051 } 00052 00053 protected: 00054 DtDe& myDe; 00055 std::string myOldName; 00056 std::string myNewName; 00057 }; 00058 } 00059 00060 #endif