Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / ucb / source / ucp / cmis / std_outputstream.hxx
blob3108a8cb9c5bacf1c3e055a36a97c918c2323b4f
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 #ifndef INCLUDED_UCB_SOURCE_UCP_CMIS_STD_OUTPUTSTREAM_HXX
11 #define INCLUDED_UCB_SOURCE_UCP_CMIS_STD_OUTPUTSTREAM_HXX
13 #include <boost/shared_ptr.hpp>
14 #include <ostream>
16 #include <osl/mutex.hxx>
17 #include <cppuhelper/weak.hxx>
18 #include <com/sun/star/io/XOutputStream.hpp>
20 namespace cmis
22 /** Implements a OutputStream
23 * working on an std::ostream
25 class StdOutputStream :
26 public cppu::OWeakObject,
27 public css::io::XOutputStream
29 public:
31 StdOutputStream( boost::shared_ptr< std::ostream > const & pStream );
33 virtual ~StdOutputStream( ) override;
35 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& rType ) override;
37 virtual void SAL_CALL acquire ( ) throw ( ) override;
39 virtual void SAL_CALL release ( ) throw ( ) override;
41 virtual void SAL_CALL writeBytes ( const css::uno::Sequence< sal_Int8 >& aData ) override;
43 virtual void SAL_CALL flush ( ) override;
45 virtual void SAL_CALL closeOutput ( ) override;
47 private:
49 osl::Mutex m_aMutex;
50 boost::shared_ptr< std::ostream > m_pStream;
54 #endif
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */