Bump for 3.6-28
[LibreOffice.git] / ucb / source / ucp / cmis / cmis_resultset.hxx
blobbd40a8ce4690c61b12637e6db2b5b652267eb7f6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * Copyright 2012 LibreOffice contributors.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef CMIS_RESULTSET_HXX
11 #define CMIS_RESULTSET_HXX
13 #include <ucbhelper/resultsethelper.hxx>
15 namespace cmis
18 class DynamicResultSet : public ::ucbhelper::ResultSetImplHelper
20 com::sun::star::uno::Reference< Content > m_xContent;
21 com::sun::star::uno::Reference< com::sun::star::ucb::XCommandEnvironment > m_xEnv;
23 private:
24 virtual void initStatic();
25 virtual void initDynamic();
27 public:
28 DynamicResultSet(
29 const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& rxSMgr,
30 const com::sun::star::uno::Reference< Content >& rxContent,
31 const com::sun::star::ucb::OpenCommandArgument2& rCommand,
32 const com::sun::star::uno::Reference<
33 com::sun::star::ucb::XCommandEnvironment >& rxEnv );
37 #endif
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */