Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / unoobj / scdetect.hxx
blobd36cdf6493ae6ce3f34387a4c3fe3f1f588a5d08
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 _SC_TYPEDETECT_HXX
21 #define _SC_TYPEDETECT_HXX
23 #include <com/sun/star/document/XExtendedFilterDetection.hpp>
24 #include <com/sun/star/uno/Exception.hpp>
25 #include <com/sun/star/uno/Reference.h>
26 #include <cppuhelper/implbase2.hxx>
28 #include <com/sun/star/lang/XServiceInfo.hpp>
29 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
30 #include <cppuhelper/factory.hxx>
32 #include <rtl/ustring.hxx>
33 #include <sfx2/sfxuno.hxx>
35 namespace com { namespace sun { namespace star {
36 namespace beans { struct PropertyValue; }
37 }}}
40 class ScFilterDetect : public ::cppu::WeakImplHelper2< ::com::sun::star::document::XExtendedFilterDetection, ::com::sun::star::lang::XServiceInfo >
42 public:
43 ScFilterDetect( const com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>& xContext );
44 virtual ~ScFilterDetect();
46 /* XServiceInfo */
47 virtual OUString SAL_CALL getImplementationName() throw( com::sun::star::uno::RuntimeException );
48 virtual sal_Bool SAL_CALL supportsService( const OUString& sServiceName ) throw( com::sun::star::uno::RuntimeException );
49 virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( com::sun::star::uno::RuntimeException );
51 /* Helper for XServiceInfo */
52 static com::sun::star::uno::Sequence<OUString> impl_getStaticSupportedServiceNames();
53 static OUString impl_getStaticImplementationName();
55 /* Helper for registry */
56 static com::sun::star::uno::Reference< com::sun::star::uno::XInterface >
57 impl_createInstance( const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& xContext )
58 throw (com::sun::star::uno::Exception);
60 //----------------------------------------------------------------------------------
61 // XExtendedFilterDetect
62 //----------------------------------------------------------------------------------
63 virtual OUString SAL_CALL detect( com::sun::star::uno::Sequence<com::sun::star::beans::PropertyValue>& lDescriptor )
64 throw (com::sun::star::uno::RuntimeException);
67 #endif
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */