bump product version to 4.1.6.2
[LibreOffice.git] / filter / source / svg / svgreader.hxx
blobaa4167e59c192e83a3d6428246c82e03bd45c667
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 */
9 #ifndef INCLUDED_SVGREADER_HXX
10 #define INCLUDED_SVGREADER_HXX
12 #include <filter/dllapi.h>
14 #include <com/sun/star/uno/XComponentContext.hpp>
15 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
16 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
17 #include <com/sun/star/io/XInputStream.hpp>
19 namespace svgi
22 class SVGReader
24 const ::com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > m_xServiceFactory;
25 const ::com::sun::star::uno::Reference< com::sun::star::io::XInputStream > m_xInputStream;
26 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler > m_xDocumentHandler;
28 public:
29 FILTER_DLLPUBLIC SVGReader( const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory>& xServiceFactory,
30 const com::sun::star::uno::Reference< com::sun::star::io::XInputStream >& xInputStream,
31 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XDocumentHandler >& xDocumentHandler );
33 FILTER_DLLPUBLIC sal_Bool parseAndConvert();
36 } // namespace svgi
38 #endif
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */