![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2007 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtConnectedSlavesInterface.h,v $ $Revision: 1.8 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #ifndef DtConnectedSlavesInterface_H_ 00014 #define DtConnectedSlavesInterface_H_ 00015 00016 #include <vrvCoreQt/vrvCoreQt.h> 00017 00018 namespace makVrv 00019 { 00022 class DT_DLL_VRVCOREQT DtConnectedSlavesInterface 00023 { 00024 public: 00025 00027 virtual void onActivate() = 0; 00028 00030 virtual void onDeactivate() = 0; 00031 00033 virtual void onAddClient(const std::string& clientName, const std::string& clientType) = 0; 00034 00036 virtual void onRemoveClient(const std::string& clientName) = 0; 00037 00038 }; 00039 } 00040 00041 #endif 00042