LibreOffice Module comphelper (master) 1
ChainablePropertySetInfo.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#ifndef INCLUDED_COMPHELPER_CHAINABLEPROPERTYSETINFO_HXX
21#define INCLUDED_COMPHELPER_CHAINABLEPROPERTYSETINFO_HXX
22
23#include <com/sun/star/beans/XPropertySetInfo.hpp>
27
28/*
29 * A ChainablePropertySetInfo is usually initialised with a pointer to the first element
30 * of a null-terminated static table of PropertyInfo structs. This is placed in a hash_map
31 * for fast access
32 *
33 */
34namespace comphelper
35{
36 // workaround for incremental linking bugs in MSVC2015
37 class SAL_DLLPUBLIC_TEMPLATE ChainablePropertySetInfo_Base : public cppu::WeakImplHelper< css::beans::XPropertySetInfo > {};
38
40 {
41 public:
43
44 void remove( const OUString& aName );
45
46 private:
48 noexcept override;
49
50 // XPropertySetInfo
51 virtual css::uno::Sequence< css::beans::Property > SAL_CALL getProperties() override;
52 virtual css::beans::Property SAL_CALL getPropertyByName( const OUString& aName ) override;
53 virtual sal_Bool SAL_CALL hasPropertyByName( const OUString& Name ) override;
54
56 css::uno::Sequence < css::beans::Property > maProperties;
57
59 friend class MasterPropertySet;
60 };
61}
62#endif
63
64/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::unordered_map< OUString, ::comphelper::PropertyInfo const * > PropertyInfoHash
css::uno::Sequence< css::beans::Property > maProperties
#define COMPHELPER_DLLPUBLIC
OUString aName
OUStringBuffer & remove(OUStringBuffer &rIn, sal_Unicode c)
Removes all occurrences of a character from within the source string.
Definition: string.hxx:49
OUString Name
unsigned char sal_Bool