dbus-cxx-config.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) 2020 by Robert Middleton *
3  * robert.middleton@rm5248.com *
4  * *
5  * This file is part of the dbus-cxx library. *
6  * *
7  * The dbus-cxx library is free software; you can redistribute it and/or *
8  * modify it under the terms of the GNU General Public License *
9  * version 3 as published by the Free Software Foundation. *
10  * *
11  * The dbus-cxx library is distributed in the hope that it will be *
12  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty *
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14  * General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU General Public License *
17  * along with this software. If not see <http://www.gnu.org/licenses/>. *
18  ***************************************************************************/
19 #ifndef DBUSCXX_CONFIG_H
20 #define DBUSCXX_CONFIG_H
21 
22 #define DBUS_CXX_HAS_CXXABI_H 1
23 #define DBUS_CXX_HAS_CXA_DEMANGLE 1
24 
25 #define DBUS_CXX_PACKAGE_MAJOR_VERSION 2
26 #define DBUS_CXX_PACKAGE_MINOR_VERSION 5
27 #define DBUS_CXX_PACKAGE_MICRO_VERSION 0
28 
29 #define DBUS_CXX_HAS_PROP_CONST 1
30 
31 #if DBUS_CXX_HAS_PROP_CONST
32 #include <experimental/propagate_const>
33 #define DBUS_CXX_PROPAGATE_CONST(T) std::experimental::propagate_const<T>
34 #else
35 #define DBUS_CXX_PROPAGATE_CONST(T) T
36 #endif
37 
38 #endif /* DBUSCXX_CONFIG_H */