// $Revision: 1.3 $ // Copyright (c) 1994-1995 Taligent, Inc. All Rights Reserved. // Notification Sample 1 #ifndef TaligentSamples_SENDER #define TaligentSamples_SENDER #ifndef Taligent_NOTIFICATION #include #endif class TSender : public TNotifier { public: TSender(); virtual ~TSender(); virtual long GetValue() const; virtual void SetValue(long); virtual TInterest GetValueChangedInterest() const; private: long fValue; }; #endif // TaligentSamples_SENDER