bump product version to 5.0.4.1
[LibreOffice.git] / writerperfect / source / draw / CDRImportFilter.hxx
blob1316aecefdfb9bb5ab54b671bafd06934c0c32d7
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
8 /* "This product is not manufactured, approved, or supported by
9 * Corel Corporation or Corel Corporation Limited."
11 #ifndef _CDRIMPORTFILTER_HXX
12 #define _CDRIMPORTFILTER_HXX
14 #include "ImportFilter.hxx"
16 #include "DocumentHandlerForOdg.hxx"
18 /* This component will be instantiated for both import or export. Whether it calls
19 * setSourceDocument or setTargetDocument determines which Impl function the filter
20 * member calls */
21 class CDRImportFilter : public writerperfect::ImportFilter<OdgGenerator>
23 public:
24 CDRImportFilter(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &rxContext)
25 : writerperfect::ImportFilter<OdgGenerator>(rxContext)
29 // XServiceInfo
30 virtual OUString SAL_CALL getImplementationName()
31 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
32 virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName)
33 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
34 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
35 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
37 private:
38 virtual bool doDetectFormat(librevenge::RVNGInputStream &rInput, OUString &rTypeName) SAL_OVERRIDE;
39 virtual bool doImportDocument(librevenge::RVNGInputStream &rInput, OdgGenerator &rGenerator, utl::MediaDescriptor &) SAL_OVERRIDE;
42 OUString CDRImportFilter_getImplementationName()
43 throw (::com::sun::star::uno::RuntimeException);
45 ::com::sun::star::uno::Sequence< OUString > SAL_CALL CDRImportFilter_getSupportedServiceNames()
46 throw (::com::sun::star::uno::RuntimeException);
48 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
49 SAL_CALL CDRImportFilter_createInstance(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &rContext)
50 throw (::com::sun::star::uno::Exception);
52 #endif
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */