LCOV - code coverage report
Current view: top level - ucb/source/ucp/cmis - cmis_resultset.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 11 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 3 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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             :  */
       9             : 
      10             : #include "cmis_datasupplier.hxx"
      11             : #include "cmis_resultset.hxx"
      12             : 
      13             : using namespace com::sun::star::lang;
      14             : using namespace com::sun::star::ucb;
      15             : using namespace com::sun::star::uno;
      16             : 
      17             : namespace cmis
      18             : {
      19           0 :     DynamicResultSet::DynamicResultSet(
      20             :         const Reference< XComponentContext >& rxContext,
      21             :         ChildrenProvider* pChildrenProvider,
      22             :         const OpenCommandArgument2& rCommand,
      23             :         const Reference< XCommandEnvironment >& rxEnv ) :
      24             :             ResultSetImplHelper( rxContext, rCommand ),
      25             :             m_pChildrenProvider( pChildrenProvider ),
      26           0 :             m_xEnv( rxEnv )
      27             :     {
      28           0 :     }
      29             : 
      30           0 :     void DynamicResultSet::initStatic()
      31             :     {
      32           0 :         m_xResultSet1 = new ::ucbhelper::ResultSet(
      33             :             m_xContext, m_aCommand.Properties,
      34           0 :             new DataSupplier( m_pChildrenProvider, m_aCommand.Mode ), m_xEnv );
      35           0 :     }
      36             : 
      37           0 :     void DynamicResultSet::initDynamic()
      38             :     {
      39           0 :         initStatic();
      40           0 :         m_xResultSet2 = m_xResultSet1;
      41           0 :     }
      42             : }
      43             : 
      44             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11