![]() |
VR-Link API Documentation for DIS
|
00001 /********************************************************************* 00002 ** Copyright (c) 1992-2010 VT MAK 00003 ** All rights reserved. 00004 *********************************************************************/ 00008 #pragma once 00009 00010 #include "vlMachineTypes.h" 00011 #include "vlObservee.h" 00012 00013 #ifdef DtUSE_UTILITIES_NAMESPACE 00014 namespace DtUSE_UTILITIES_NAMESPACE 00015 { 00016 #endif 00017 00024 class DT_DLL_VLUTIL DtAbsNotifyObserver 00025 { 00026 public: 00027 00029 virtual ~DtAbsNotifyObserver(); 00030 00032 DtAbsNotifyObserver& operator=(const DtAbsNotifyObserver& orig); 00033 00037 virtual bool notifyFromObserved(DtObservee* observed, 00038 const DtObservee::DtWhyNotifyObserver& why); 00039 00040 protected: 00041 00043 00045 DtAbsNotifyObserver(); 00046 00048 DtAbsNotifyObserver(const DtAbsNotifyObserver& orig); 00049 }; 00050 00051 #ifdef DtUSE_UTILITIES_NAMESPACE 00052 } 00053 #endif 00054 00055