1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
12 #include <cppuhelper/implbase.hxx>
14 #include <com/sun/star/lang/XServiceInfo.hpp>
15 #include <com/sun/star/document/XExtendedFilterDetection.hpp>
17 class ScExcelBiffDetect
18 : public cppu::WeakImplHelper
<css::document::XExtendedFilterDetection
, css::lang::XServiceInfo
>
21 explicit ScExcelBiffDetect();
22 virtual ~ScExcelBiffDetect() override
;
25 virtual OUString SAL_CALL
getImplementationName() override
;
26 virtual sal_Bool SAL_CALL
supportsService(const OUString
& aName
) override
;
27 virtual css::uno::Sequence
<OUString
> SAL_CALL
getSupportedServiceNames() override
;
29 // XExtendedFilterDetection
30 virtual OUString SAL_CALL
31 detect(css::uno::Sequence
<css::beans::PropertyValue
>& lDescriptor
) override
;
34 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */