1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
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>
16 #include <osl/mutex.hxx>
17 #include <cppuhelper/weak.hxx>
18 #include <com/sun/star/io/XOutputStream.hpp>
22 /** Implements a OutputStream
23 * working on an std::ostream
25 class StdOutputStream
:
26 public cppu::OWeakObject
,
27 public css::io::XOutputStream
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
;
50 boost::shared_ptr
< std::ostream
> m_pStream
;
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */