12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- * 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 block list
- *
- * @addtogroup libfreebusy
- * @{
- */
- #ifndef ECFBBLOCKLIST_H
- #define ECFBBLOCKLIST_H
- #include "freebusy.h"
- #include <map>
- #include <kopano/zcdefs.h>
- namespace KC {
- typedef std::map<LONG, FBBlock_1>mapFB;
- class ECFBBlockList _kc_final {
- public:
- ECFBBlockList(void);
- void Copy(ECFBBlockList *lpfbBlkList);
- HRESULT Add(FBBlock_1* lpFBBlock);
- HRESULT Next(FBBlock_1* pblk);
- HRESULT Reset();
- HRESULT Skip(LONG items);
- HRESULT Restrict(LONG tmStart, LONG tmEnd);
- void Clear();
- ULONG Size();
- HRESULT Merge(FBBlock_1* lpFBBlock);
- HRESULT GetEndTime(LONG *rtmEnd);
- private:
- mapFB m_FBMap;
- mapFB::iterator m_FBIter;
- LONG m_tmRestictStart;
- LONG m_tmRestictEnd;
- bool m_bInitIter;
- };
- } /* namespace */
- #endif // ECFBBLOCKLIST_H
- /** @} */
|