X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/9701b7ab4dc4cd709ad4dcaa750fc0021f15e231..43ac308ea20014761481bc40525496a0bb1d9740:/include/stg/notifer.h diff --git a/include/stg/notifer.h b/include/stg/notifer.h deleted file mode 100644 index 57f9928e..00000000 --- a/include/stg/notifer.h +++ /dev/null @@ -1,29 +0,0 @@ - /* - $Revision: 1.6 $ - $Date: 2007/12/03 09:00:17 $ - $Author: nobunaga $ - */ - -#ifndef PROPERTY_NOTIFER_H -#define PROPERTY_NOTIFER_H - -//----------------------------------------------------------------------------- -template -class PROPERTY_NOTIFIER_BASE -{ -public: - virtual ~PROPERTY_NOTIFIER_BASE(){}; - virtual void Notify(const varParamType & oldValue, const varParamType & newValue) = 0; -}; -//----------------------------------------------------------------------------- -template -class NOTIFIER_BASE -{ -public: - virtual ~NOTIFIER_BASE(){}; - virtual void Notify(const varParamType & value) = 0; -}; -//----------------------------------------------------------------------------- -#endif //PROPERTY_NOTIFER_H - -