fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / drawinglayer / processor2d / processorfromoutputdevice.hxx
blobcd149db71e6dc09fd5d855f5d9dee8f6ea4f7f06
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _PROCESSOR_FROM_OUTPUTDEVICE_HXX
21 #define _PROCESSOR_FROM_OUTPUTDEVICE_HXX
23 #include <drawinglayer/geometry/viewinformation2d.hxx>
24 #include "drawinglayer/drawinglayerdllapi.h"
26 //////////////////////////////////////////////////////////////////////////////
27 // predeclarations
29 class OutputDevice;
31 namespace drawinglayer { namespace processor2d {
32 class BaseProcessor2D;
35 //////////////////////////////////////////////////////////////////////////////
37 namespace drawinglayer
39 namespace processor2d
41 // create a mating VCL-Provessor for given OutputDevice. This includes
42 // looking for MetaFile-recording. The returned renderer changes owner,
43 // deletion is duty of the caller
44 DRAWINGLAYER_DLLPUBLIC drawinglayer::processor2d::BaseProcessor2D* createBaseProcessor2DFromOutputDevice(
45 OutputDevice& rTargetOutDev,
46 const drawinglayer::geometry::ViewInformation2D& rViewInformation2D);
48 } // end of namespace processor2d
49 } // end of namespace drawinglayer
51 //////////////////////////////////////////////////////////////////////////////
53 #endif //_PROCESSOR_FROM_OUTPUTDEVICE_HXX
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */