Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / comphelper / propertyvalue.hxx
blobde71791100b186762b51b12980596b064a4e6072
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 #ifndef INCLUDED_COMPHELPER_PROPERTYVALUE_HXX
11 #define INCLUDED_COMPHELPER_PROPERTYVALUE_HXX
13 #include <sal/config.h>
15 #include <type_traits>
16 #include <utility>
18 #include <com/sun/star/beans/PropertyValue.hpp>
20 namespace comphelper
22 /**
23 * Creates a beans::PropertyValue easily, i.e. you can write:
25 * function(comphelper::makePropertyValue("Foo", nBar));
27 * instead of writing 3 extra lines to set the name and value of the beans::PropertyValue.
29 template <typename T, std::enable_if_t<!std::is_arithmetic_v<std::remove_reference_t<T>>, int> = 0>
30 css::beans::PropertyValue makePropertyValue(const OUString& rName, T&& rValue)
32 return { rName, 0, css::uno::toAny(std::forward<T>(rValue)),
33 css::beans::PropertyState_DIRECT_VALUE };
35 // Allows to pass e.g. bit fields
36 template <typename T, std::enable_if_t<std::is_arithmetic_v<T>, int> = 0>
37 css::beans::PropertyValue makePropertyValue(const OUString& rName, T aValue)
39 return makePropertyValue(rName, css::uno::toAny(aValue));
43 #endif // INCLUDED_COMPHELPER_PROPERTYVALUE_HXX
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */