12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*
- * 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/>.
- *
- */
- #ifndef WSSTORETABLEVIEW_H
- #define WSSTORETABLEVIEW_H
- #include <mutex>
- #include <kopano/zcdefs.h>
- #include "WSTableView.h"
- class WSStoreTableView : public WSTableView {
- protected:
- WSStoreTableView(ULONG ulType, ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *);
- virtual ~WSStoreTableView(void) _kc_impdtor;
- public:
- static HRESULT Create(ULONG ulType, ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *, WSTableView **);
- virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
- };
- class WSTableOutGoingQueue _kc_final : public WSStoreTableView {
- protected:
- WSTableOutGoingQueue(KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *);
- public:
- static HRESULT Create(KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *, WSTableOutGoingQueue **);
- virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
- virtual HRESULT HrOpenTable();
- };
- class WSTableMultiStore _kc_final : public WSStoreTableView {
- protected:
- WSTableMultiStore(ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *);
- virtual ~WSTableMultiStore();
- public:
- static HRESULT Create(ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *, WSTableMultiStore **);
- virtual HRESULT HrOpenTable();
- virtual HRESULT HrSetEntryIDs(LPENTRYLIST lpMsgList);
- private:
- struct entryList m_sEntryList;
- };
- /* not really store tables, but the code is the same.. */
- class WSTableMisc _kc_final : public WSStoreTableView {
- protected:
- WSTableMisc(ULONG ulTableType, ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *);
- public:
- static HRESULT Create(ULONG ulTableType, ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ULONG cbEntryId, LPENTRYID, ECMsgStore *, WSTransport *, WSTableMisc **);
- virtual HRESULT HrOpenTable();
- private:
- ULONG m_ulTableType;
- };
- /**
- * MailBox table which shows all the stores
- */
- class WSTableMailBox _kc_final : public WSStoreTableView {
- protected:
- WSTableMailBox(ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ECMsgStore *, WSTransport *);
- public:
- static HRESULT Create(ULONG ulFlags, KCmd *, std::recursive_mutex &, ECSESSIONID, ECMsgStore *, WSTransport *, WSTableMailBox **);
- };
- #endif
|