12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #ifndef ECNOTIFICATION
- #define ECNOTIFICATION
- #include <kopano/zcdefs.h>
- #include "soapH.h"
- struct soap;
- namespace KC {
- class ECNotification _kc_final {
- public:
- ECNotification();
- virtual ~ECNotification();
- ECNotification(const ECNotification &x);
- ECNotification& operator=(const ECNotification &x);
- ECNotification(notification ¬ification);
- ECNotification& operator=(const notification &srcNotification);
- void SetConnection(unsigned int ulConnection);
- void GetCopy(struct soap *, notification &) const;
- size_t GetObjectSize(void) const;
- protected:
- void Init();
- private:
- notification *m_lpsNotification;
- };
- }
- #endif
|