Line data Source code
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 : * 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 .
18 : */
19 :
20 : #ifndef INCLUDED_FILTER_SOURCE_XMLFILTERDETECT_FILTERDETECT_HXX
21 : #define INCLUDED_FILTER_SOURCE_XMLFILTERDETECT_FILTERDETECT_HXX
22 :
23 : #include <com/sun/star/document/XExtendedFilterDetection.hpp>
24 : #include <com/sun/star/lang/XInitialization.hpp>
25 : #include <com/sun/star/lang/XServiceInfo.hpp>
26 : #include <cppuhelper/implbase3.hxx>
27 :
28 : namespace com { namespace sun { namespace star { namespace uno {
29 : class XComponentContext;
30 : } } } }
31 :
32 : class FilterDetect : public cppu::WeakImplHelper3 <
33 : css::document::XExtendedFilterDetection,
34 : css::lang::XInitialization,
35 : css::lang::XServiceInfo
36 : >
37 : {
38 :
39 : protected:
40 : css::uno::Reference< css::uno::XComponentContext > mxCtx;
41 :
42 : public:
43 944 : FilterDetect( const css::uno::Reference< css::uno::XComponentContext > &rxCtx)
44 944 : : mxCtx( rxCtx ) {}
45 :
46 1888 : virtual ~FilterDetect() {}
47 :
48 : //XExtendedFilterDetection
49 : virtual OUString SAL_CALL detect( css::uno::Sequence< css::beans::PropertyValue >& lDescriptor )
50 : throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
51 :
52 : // XInitialization
53 : virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments )
54 : throw (css::uno::Exception, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
55 :
56 : // XServiceInfo
57 : virtual OUString SAL_CALL getImplementationName( )
58 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
59 :
60 : virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
61 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
62 :
63 : virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
64 : throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
65 : };
66 :
67 : OUString SAL_CALL FilterDetect_getImplementationName();
68 :
69 : css::uno::Sequence< OUString > SAL_CALL FilterDetect_getSupportedServiceNames();
70 :
71 : css::uno::Reference< css::uno::XInterface > SAL_CALL
72 : FilterDetect_createInstance(
73 : css::uno::Reference<
74 : css::uno::XComponentContext > const & context);
75 :
76 : #endif
77 :
78 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|