12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- /**
- * @file
- * Free/busy data for one user
- *
- * @addtogroup libfreebusy
- * @{
- */
- #ifndef ECFREEBUSYDATA_H
- #define ECFREEBUSYDATA_H
- #include <kopano/zcdefs.h>
- #include "freebusy.h"
- #include "freebusyguid.h"
- #include <kopano/ECUnknown.h>
- #include <kopano/Trace.h>
- #include <kopano/ECDebug.h>
- #include <kopano/ECGuid.h>
- #include "ECFBBlockList.h"
- namespace KC {
- /**
- * Implementatie of the IFreeBusyData interface
- */
- class ECFreeBusyData _kc_final : public ECUnknown {
- private:
- ECFreeBusyData();
- public:
- static HRESULT Create(ECFreeBusyData **lppECFreeBusyData);
- HRESULT Init(LONG rtmStart, LONG rtmEnd, ECFBBlockList* lpfbBlockList);
- virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
- virtual HRESULT Reload(void *) { return E_NOTIMPL; }
- virtual HRESULT EnumBlocks(IEnumFBBlock **ppenumfb, FILETIME ftmStart, FILETIME ftmEnd);
- virtual HRESULT Merge(void *) { return E_NOTIMPL; }
- virtual HRESULT GetDelegateInfo(void *) { return E_NOTIMPL; }
- virtual HRESULT FindFreeBlock(LONG, LONG, LONG, BOOL, LONG, LONG, LONG, FBBlock_1 *);
- virtual HRESULT InterSect(void *, LONG, void *) { return E_NOTIMPL; }
- virtual HRESULT SetFBRange(LONG rtmStart, LONG rtmEnd);
- virtual HRESULT NextFBAppt(void *, ULONG, void *, ULONG, void *, void *) { return E_NOTIMPL; }
- virtual HRESULT GetFBPublishRange(LONG *prtmStart, LONG *prtmEnd);
- class xFreeBusyData _kc_final : public IFreeBusyData {
- #include <kopano/xclsfrag/IUnknown.hpp>
- // <kopano/xclsfrag/IFreeBusyData.hpp>
- virtual HRESULT __stdcall Reload(void *) _kc_override;
- virtual HRESULT __stdcall EnumBlocks(IEnumFBBlock **ppenumfb, FILETIME ftmStart, FILETIME ftmEnd) _kc_override;
- virtual HRESULT __stdcall Merge(void *) _kc_override;
- virtual HRESULT __stdcall GetDelegateInfo(void *) _kc_override;
- virtual HRESULT __stdcall FindFreeBlock(LONG, LONG, LONG, BOOL, LONG, LONG, LONG, FBBlock_1 *) _kc_override;
- virtual HRESULT __stdcall InterSect(void *, LONG, void *) _kc_override;
- virtual HRESULT __stdcall SetFBRange(LONG rtmStart, LONG rtmEnd) _kc_override;
- virtual HRESULT __stdcall NextFBAppt(void *, ULONG, void *, ULONG, void *, void *) _kc_override;
- virtual HRESULT __stdcall GetFBPublishRange(LONG *prtmStart, LONG *prtmEnd) _kc_override;
- } m_xFreeBusyData;
- private:
- ECFBBlockList m_fbBlockList;
- LONG m_rtmStart; // PR_FREEBUSY_START_RANGE
- LONG m_rtmEnd; // PR_FREEBUSY_END_RANGE
- };
- } /* namespace */
- #endif // ECFREEBUSYDATA_H
- /** @} */
|