1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 #ifndef INCLUDED_COMPHELPER_PROPERTYVALUE_HXX
11 #define INCLUDED_COMPHELPER_PROPERTYVALUE_HXX
13 #include <sal/config.h>
15 #include <type_traits>
18 #include <com/sun/star/beans/PropertyValue.hpp>
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: */