tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / unoobj / exceldetect.hxx
blob718963752646247c788a45cefa170a10a8d19fa7
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 */
10 #pragma once
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>
20 public:
21 explicit ScExcelBiffDetect();
22 virtual ~ScExcelBiffDetect() override;
24 // XServiceInfo
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: */