123456789101112131415161718192021 |
- //---------------------------------------------------------------------------
- #ifndef CDSNotifyFH
- #define CDSNotifyFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- //---------------------------------------------------------------------------
- template<typename T>
- class TCDSNotify
- {
- public:
- TCDSNotify(T* AData);
- ~TCDSNotify();
- private:
- T* FData;
- TNotifyEvent FEvent;
- };
- #endif
|