LCOV - code coverage report
Current view: top level - o3tl/qa - cow_wrapper_clients.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 82 97 84.5 %
Date: 2015-06-13 12:38:46 Functions: 38 44 86.4 %
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             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include "cow_wrapper_clients.hxx"
      21             : #include <rtl/instance.hxx>
      22             : 
      23             : namespace o3tltests {
      24             : 
      25             : class cow_wrapper_client2_impl
      26             : {
      27             : public:
      28           6 :     cow_wrapper_client2_impl() : mnValue(0) {}
      29           2 :     explicit cow_wrapper_client2_impl( int nVal ) : mnValue(nVal) {}
      30           4 :     void setValue( int nVal ) { mnValue = nVal; }
      31           6 :     int  getValue() const { return mnValue; }
      32             : 
      33           4 :     bool operator==( const cow_wrapper_client2_impl& rRHS ) const { return mnValue == rRHS.mnValue; }
      34           6 :     bool operator!=( const cow_wrapper_client2_impl& rRHS ) const { return mnValue != rRHS.mnValue; }
      35           4 :     bool operator<( const cow_wrapper_client2_impl& rRHS ) const { return mnValue < rRHS.mnValue; }
      36             : 
      37             : private:
      38             :     int mnValue;
      39             : };
      40             : 
      41           3 : cow_wrapper_client2::cow_wrapper_client2() : maImpl()
      42             : {
      43           3 : }
      44             : 
      45           1 : cow_wrapper_client2::cow_wrapper_client2( int nVal ) :
      46           1 :     maImpl( cow_wrapper_client2_impl(nVal) )
      47             : {
      48           1 : }
      49             : 
      50           4 : cow_wrapper_client2::~cow_wrapper_client2()
      51             : {
      52           4 : }
      53             : 
      54           0 : cow_wrapper_client2::cow_wrapper_client2( const cow_wrapper_client2& rSrc ) :
      55           0 :     maImpl(rSrc.maImpl)
      56             : {
      57           0 : }
      58             : 
      59           3 : cow_wrapper_client2& cow_wrapper_client2::operator=( const cow_wrapper_client2& rSrc )
      60             : {
      61           3 :     maImpl = rSrc.maImpl;
      62             : 
      63           3 :     return *this;
      64             : }
      65             : 
      66           2 : void cow_wrapper_client2::modify( int nVal )
      67             : {
      68           2 :     maImpl->setValue( nVal );
      69           2 : }
      70             : 
      71           3 : int  cow_wrapper_client2::queryUnmodified() const
      72             : {
      73           3 :     return maImpl->getValue();
      74             : }
      75             : 
      76           1 : void cow_wrapper_client2::makeUnique()
      77             : {
      78           1 :     maImpl.make_unique();
      79           1 : }
      80           5 : bool cow_wrapper_client2::is_unique() const
      81             : {
      82           5 :     return maImpl.is_unique();
      83             : }
      84           9 : oslInterlockedCount cow_wrapper_client2::use_count() const
      85             : {
      86           9 :     return maImpl.use_count();
      87             : }
      88           1 : void cow_wrapper_client2::swap( cow_wrapper_client2& r )
      89             : {
      90           1 :     o3tl::swap(maImpl, r.maImpl);
      91           1 : }
      92             : 
      93           6 : bool cow_wrapper_client2::operator==( const cow_wrapper_client2& rRHS ) const
      94             : {
      95           6 :     return maImpl == rRHS.maImpl;
      96             : }
      97           3 : bool cow_wrapper_client2::operator!=( const cow_wrapper_client2& rRHS ) const
      98             : {
      99           3 :     return maImpl != rRHS.maImpl;
     100             : }
     101           2 : bool cow_wrapper_client2::operator<( const cow_wrapper_client2& rRHS ) const
     102             : {
     103           2 :     return maImpl < rRHS.maImpl;
     104             : }
     105             : 
     106             : 
     107             : 
     108           3 : cow_wrapper_client3::cow_wrapper_client3() : maImpl()
     109             : {
     110           3 : }
     111             : 
     112           1 : cow_wrapper_client3::cow_wrapper_client3( int nVal ) :
     113           1 :     maImpl( cow_wrapper_client2_impl(nVal) )
     114             : {
     115           1 : }
     116             : 
     117           4 : cow_wrapper_client3::~cow_wrapper_client3()
     118             : {
     119           4 : }
     120             : 
     121           0 : cow_wrapper_client3::cow_wrapper_client3( const cow_wrapper_client3& rSrc ) :
     122           0 :     maImpl(rSrc.maImpl)
     123             : {
     124           0 : }
     125             : 
     126           3 : cow_wrapper_client3& cow_wrapper_client3::operator=( const cow_wrapper_client3& rSrc )
     127             : {
     128           3 :     maImpl = rSrc.maImpl;
     129             : 
     130           3 :     return *this;
     131             : }
     132             : 
     133           2 : void cow_wrapper_client3::modify( int nVal )
     134             : {
     135           2 :     maImpl->setValue( nVal );
     136           2 : }
     137             : 
     138           3 : int  cow_wrapper_client3::queryUnmodified() const
     139             : {
     140           3 :     return maImpl->getValue();
     141             : }
     142             : 
     143           1 : void cow_wrapper_client3::makeUnique()
     144             : {
     145           1 :     maImpl.make_unique();
     146           1 : }
     147           5 : bool cow_wrapper_client3::is_unique() const
     148             : {
     149           5 :     return maImpl.is_unique();
     150             : }
     151           9 : oslInterlockedCount cow_wrapper_client3::use_count() const
     152             : {
     153           9 :     return maImpl.use_count();
     154             : }
     155           1 : void cow_wrapper_client3::swap( cow_wrapper_client3& r )
     156             : {
     157           1 :     o3tl::swap(maImpl, r.maImpl);
     158           1 : }
     159             : 
     160           6 : bool cow_wrapper_client3::operator==( const cow_wrapper_client3& rRHS ) const
     161             : {
     162           6 :     return maImpl == rRHS.maImpl;
     163             : }
     164           3 : bool cow_wrapper_client3::operator!=( const cow_wrapper_client3& rRHS ) const
     165             : {
     166           3 :     return maImpl != rRHS.maImpl;
     167             : }
     168           2 : bool cow_wrapper_client3::operator<( const cow_wrapper_client3& rRHS ) const
     169             : {
     170           2 :     return maImpl < rRHS.maImpl;
     171             : }
     172             : 
     173             : 
     174             : 
     175             : namespace { struct theDefaultClient4 : public rtl::Static< o3tl::cow_wrapper< int >,
     176             :                                                             theDefaultClient4 > {}; }
     177             : 
     178           2 : cow_wrapper_client4::cow_wrapper_client4() :
     179           2 :     maImpl(theDefaultClient4::get())
     180             : {
     181           2 : }
     182             : 
     183           1 : cow_wrapper_client4::cow_wrapper_client4( int nVal ) :
     184           1 :     maImpl( nVal )
     185             : {
     186           1 : }
     187             : 
     188           3 : cow_wrapper_client4::~cow_wrapper_client4()
     189             : {
     190           3 : }
     191             : 
     192           0 : cow_wrapper_client4::cow_wrapper_client4( const cow_wrapper_client4& rSrc ) :
     193           0 :     maImpl(rSrc.maImpl)
     194             : {
     195           0 : }
     196             : 
     197           2 : cow_wrapper_client4& cow_wrapper_client4::operator=( const cow_wrapper_client4& rSrc )
     198             : {
     199           2 :     maImpl = rSrc.maImpl;
     200             : 
     201           2 :     return *this;
     202             : }
     203             : 
     204           6 : bool cow_wrapper_client4::is_default() const
     205             : {
     206           6 :     return maImpl.same_object(theDefaultClient4::get());
     207             : }
     208             : 
     209           0 : bool cow_wrapper_client4::operator==( const cow_wrapper_client4& rRHS ) const
     210             : {
     211           0 :     return maImpl == rRHS.maImpl;
     212             : }
     213           0 : bool cow_wrapper_client4::operator!=( const cow_wrapper_client4& rRHS ) const
     214             : {
     215           0 :     return maImpl != rRHS.maImpl;
     216             : }
     217           0 : bool cow_wrapper_client4::operator<( const cow_wrapper_client4& rRHS ) const
     218             : {
     219           0 :     return maImpl < rRHS.maImpl;
     220             : }
     221             : 
     222             : } // namespace o3tltests
     223             : 
     224             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11