//--------------------------------------------------------------------------- #ifndef CDSNotifyFH #define CDSNotifyFH //--------------------------------------------------------------------------- #include //--------------------------------------------------------------------------- template class TCDSNotify { public: TCDSNotify(T* AData); ~TCDSNotify(); private: T* FData; TNotifyEvent FEvent; }; #endif