Fix GNU C++ version check
[LibreOffice.git] / dbaccess / source / sdbtools / inc / connectiontools.hxx
blob876f713afa0f3f8d1460167937366508dcf0eb85
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 #pragma once
22 #include "connectiondependent.hxx"
24 #include <com/sun/star/sdb/tools/XConnectionTools.hpp>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/lang/XInitialization.hpp>
27 #include <com/sun/star/uno/XComponentContext.hpp>
29 #include <cppuhelper/implbase.hxx>
31 namespace sdbtools
34 // ConnectionTools
35 typedef ::cppu::WeakImplHelper< css::sdb::tools::XConnectionTools
36 , css::lang::XServiceInfo
37 , css::lang::XInitialization
38 > ConnectionTools_Base;
39 /** implements the css::sdb::tools::XConnectionTools functionality
41 class ConnectionTools :public ConnectionTools_Base
42 ,public ConnectionDependentComponent
44 public:
45 /** constructs a ConnectionTools instance
47 @param _rxContext
48 the context of the component
50 explicit ConnectionTools( const css::uno::Reference< css::uno::XComponentContext >& _rContext );
52 // XConnectionTools
53 virtual css::uno::Reference< css::sdb::tools::XTableName > SAL_CALL createTableName() override;
54 virtual css::uno::Reference< css::sdb::tools::XObjectNames > SAL_CALL getObjectNames() override;
55 virtual css::uno::Reference< css::sdb::tools::XDataSourceMetaData > SAL_CALL getDataSourceMetaData() override;
56 virtual css::uno::Reference< css::container::XNameAccess > SAL_CALL getFieldsByCommandDescriptor( ::sal_Int32 commandType, const OUString& command, css::uno::Reference< css::lang::XComponent >& keepFieldsAlive ) override;
57 virtual css::uno::Reference< css::sdb::XSingleSelectQueryComposer > SAL_CALL getComposer( ::sal_Int32 commandType, const OUString& command ) override;
59 // XServiceInfo
60 virtual OUString SAL_CALL getImplementationName() override;
61 virtual sal_Bool SAL_CALL supportsService(const OUString & ServiceName) override;
62 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
64 // XInitialization
65 virtual void SAL_CALL initialize(const css::uno::Sequence< css::uno::Any > & aArguments) override;
67 protected:
68 virtual ~ConnectionTools() override;
70 private:
71 ConnectionTools( const ConnectionTools& ) = delete;
72 ConnectionTools& operator=( const ConnectionTools& ) = delete;
75 } // namespace sdbtools
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */