many changes
This commit is contained in:
parent
af6e9da658
commit
7841877d64
49 changed files with 208 additions and 221 deletions
|
@ -25,10 +25,6 @@
|
|||
#ifndef __DBUSXX_API_H
|
||||
#define __DBUSXX_API_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#endif
|
||||
|
||||
#ifdef GCC_HASCLASSVISIBILITY
|
||||
# define DXXAPILOCAL __attribute__ ((visibility("hidden")))
|
||||
# define DXXAPIPUBLIC __attribute__ ((visibility("default")))
|
||||
|
|
|
@ -1,73 +0,0 @@
|
|||
/* include/dbus-c++/config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* unstable DBus */
|
||||
#undef DBUS_API_SUBJECT_TO_CHANGE
|
||||
|
||||
/* DBus supports recursive mutexes (needs DBus >= 0.95) */
|
||||
#undef DBUS_HAS_RECURSIVE_MUTEX
|
||||
|
||||
/* dbus_threads_init_default (needs DBus >= 0.93) */
|
||||
#undef DBUS_HAS_THREADS_INIT_DEFAULT
|
||||
|
||||
/* to enable hidden symbols */
|
||||
#undef GCC_HASCLASSVISIBILITY
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
/* Define to 1 if you have the <expat.h> header file. */
|
||||
#undef HAVE_EXPAT_H
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the <pthread.h> header file. */
|
||||
#undef HAVE_PTHREAD_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_CONNECTION_H
|
||||
#define __DBUSXX_CONNECTION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include <list>
|
||||
|
|
|
@ -25,10 +25,6 @@
|
|||
#ifndef __DBUSXX_DBUS_H
|
||||
#define __DBUSXX_DBUS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#endif
|
||||
|
||||
#include "types.h"
|
||||
#include "interface.h"
|
||||
#include "object.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_DEBUG_H
|
||||
#define __DBUSXX_DEBUG_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_DISPATCHER_H
|
||||
#define __DBUSXX_DISPATCHER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
@ -45,6 +45,9 @@ public:
|
|||
|
||||
virtual ~Timeout(){}
|
||||
|
||||
/*!
|
||||
* return The dbus timeout interval in miliseconds.
|
||||
*/
|
||||
int interval() const;
|
||||
|
||||
bool enabled() const;
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_ERROR_H
|
||||
#define __DBUSXX_ERROR_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_EVENTLOOP_INTEGRATION_H
|
||||
#define __DBUSXX_EVENTLOOP_INTEGRATION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_EVENTLOOP_H
|
||||
#define __DBUSXX_EVENTLOOP_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_PTHREAD_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_GLIB_INTEGRATION_H
|
||||
#define __DBUSXX_GLIB_INTEGRATION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include <glib.h>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_INTERFACE_H
|
||||
#define __DBUSXX_INTERFACE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_INTROSPECTION_H
|
||||
#define __DBUSXX_INTROSPECTION_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_MESSAGE_H
|
||||
#define __DBUSXX_MESSAGE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_OBJECT_H
|
||||
#define __DBUSXX_OBJECT_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_PENDING_CALL_H
|
||||
#define __DBUSXX_PENDING_CALL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_PROPERTY_H
|
||||
#define __DBUSXX_PROPERTY_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_REFPTR_IMPL_H
|
||||
#define __DBUSXX_REFPTR_IMPL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_SERVER_H
|
||||
#define __DBUSXX_SERVER_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include <list>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_TYPES_H
|
||||
#define __DBUSXX_TYPES_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#ifndef __DBUSXX_UTIL_H
|
||||
#define __DBUSXX_UTIL_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <dbus-c++/config.h>
|
||||
#ifdef HAVE_DBUSPP_CONFIG_H
|
||||
#include <dbus-c++/dbus-c++-config.h>
|
||||
#endif
|
||||
|
||||
#include "api.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue