00001 /* 00002 ***************************************************************** 00003 ***************************************************************** 00004 ******* ******** 00005 ******* (C) Copyright 1989-2007 by Tecplot Inc. ******** 00006 ******* All Rights Reserved. ******** 00007 ******* ******** 00008 ***************************************************************** 00009 ***************************************************************** 00010 */ 00011 #ifndef TECPLOT_TOOLBOX_STATECHANGELISTENERINTERFACE_H 00012 #define TECPLOT_TOOLBOX_STATECHANGELISTENERINTERFACE_H 00013 00014 #include "tptoolbox.h" 00015 00016 namespace tecplot { namespace toolbox { 00017 00018 class StateChangeEventInterface; 00019 class StateChangeNotifierInterface; 00020 00025 class TPTOOLBOX_DLLAPI StateChangeListenerInterface 00026 { 00027 public: 00028 virtual void stateChanged(const StateChangeEventInterface& stateChangeEvent, 00029 StateChangeNotifierInterface& source) = 0; 00030 virtual ~StateChangeListenerInterface(){} 00031 }; 00032 00033 }} 00034 00035 #endif 00036
1.5.5