bump product version to 7.2.5.1
[LibreOffice.git] / ucb / source / ucp / cmis / std_outputstream.hxx
blob4cf10646e7b97ddc37ec18077d7ffced7974964e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 #pragma once
12 #include <boost/shared_ptr.hpp>
13 #include <ostream>
15 #include <osl/mutex.hxx>
16 #include <cppuhelper/weak.hxx>
17 #include <com/sun/star/io/XOutputStream.hpp>
19 namespace cmis
21 /** Implements a OutputStream
22 * working on an std::ostream
24 class StdOutputStream :
25 public cppu::OWeakObject,
26 public css::io::XOutputStream
28 public:
30 StdOutputStream( boost::shared_ptr< std::ostream > const & pStream );
32 virtual ~StdOutputStream( ) override;
34 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& rType ) override;
36 virtual void SAL_CALL acquire ( ) noexcept override;
38 virtual void SAL_CALL release ( ) noexcept override;
40 virtual void SAL_CALL writeBytes ( const css::uno::Sequence< sal_Int8 >& aData ) override;
42 virtual void SAL_CALL flush ( ) override;
44 virtual void SAL_CALL closeOutput ( ) override;
46 private:
48 osl::Mutex m_aMutex;
49 boost::shared_ptr< std::ostream > m_pStream;
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */