LibreOffice Module vcl (master) 1
UnoBinaryDataContainer.hxx
Go to the documentation of this file.
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 */
12
13#pragma once
14
18
19#include <com/sun/star/util/XBinaryDataContainer.hpp>
20#include <com/sun/star/uno/XComponentContext.hpp>
21
22#include <utility>
24
25class UnoBinaryDataContainer final : public cppu::WeakImplHelper<css::util::XBinaryDataContainer>
26{
27private:
29
30public:
32 : maBinaryDataContainer(std::move(aBinaryDataContainer))
33 {
34 }
35
37
38 // XBinaryDataContainer
39 css::uno::Sequence<sal_Int8> SAL_CALL getCopyAsByteSequence() override;
40};
41
42/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Container for the binary data, whose responsibility is to manage the make it as simple as possible to...
BinaryDataContainer const & getBinaryDataContainer() const
BinaryDataContainer maBinaryDataContainer
UnoBinaryDataContainer(BinaryDataContainer aBinaryDataContainer)
css::uno::Sequence< sal_Int8 > SAL_CALL getCopyAsByteSequence() override