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/.
12 #include <boost/shared_ptr.hpp>
15 #include <osl/mutex.hxx>
16 #include <cppuhelper/weak.hxx>
17 #include <com/sun/star/io/XOutputStream.hpp>
21 /** Implements a OutputStream
22 * working on an std::ostream
24 class StdOutputStream
:
25 public cppu::OWeakObject
,
26 public css::io::XOutputStream
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
;
49 boost::shared_ptr
< std::ostream
> m_pStream
;
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */