Fix GNU C++ version check
[LibreOffice.git] / dbaccess / source / core / inc / documentevents.hxx
blob224fc407d2fe4196b6dfc32cc1f0364ace75de8b
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 <com/sun/star/container/XNameReplace.hpp>
23 #include <com/sun/star/beans/PropertyValue.hpp>
25 #include <cppuhelper/implbase.hxx>
27 #include <map>
29 namespace dbaccess
32 typedef std::map< OUString, css::uno::Sequence< css::beans::PropertyValue > >
33 DocumentEventsData;
35 typedef ::cppu::WeakImplHelper< css::container::XNameReplace
36 > DocumentEvents_Base;
38 class DocumentEvents :public DocumentEvents_Base
40 public:
41 DocumentEvents( ::cppu::OWeakObject& _rParent, ::osl::Mutex& _rMutex, DocumentEventsData& _rEventsData );
42 virtual ~DocumentEvents() override;
44 DocumentEvents(const DocumentEvents&) = delete;
45 const DocumentEvents& operator=(const DocumentEvents&) = delete;
47 static bool needsSynchronousNotification( std::u16string_view _rEventName );
49 // XInterface
50 virtual void SAL_CALL acquire() noexcept override;
51 virtual void SAL_CALL release() noexcept override;
53 // XNameReplace
54 virtual void SAL_CALL replaceByName( const OUString& aName, const css::uno::Any& aElement ) override;
56 // XNameAccess
57 virtual css::uno::Any SAL_CALL getByName( const OUString& aName ) override;
58 virtual css::uno::Sequence< OUString > SAL_CALL getElementNames( ) override;
59 virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) override;
61 // XElementAccess
62 virtual css::uno::Type SAL_CALL getElementType( ) override;
63 virtual sal_Bool SAL_CALL hasElements( ) override;
65 private:
66 ::cppu::OWeakObject& mrParent;
67 ::osl::Mutex& mrMutex;
68 DocumentEventsData& mrEventsData;
71 } // namespace dbaccess
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */