- NO FUNCTIONAL CODE CHANGES!!!!

- changed code formating from tabs to spaces and others
- used astyle with this option:
  --style=ansi --indent=spaces=2 -M --pad-oper --unpad-paren --pad-header --align-pointer=name --lineend=linux
This commit is contained in:
Andreas Volz 2011-11-28 12:44:11 +01:00
parent b100e9d32a
commit 1c8e43e6d6
76 changed files with 5691 additions and 5492 deletions

View file

@ -38,37 +38,38 @@
#include <string>
namespace DBus {
namespace DBus
{
struct DXXAPILOCAL Connection::Private
{
DBusConnection * conn;
DBusConnection *conn;
std::vector<std::string> names;
std::vector<std::string> names;
Dispatcher *dispatcher;
bool do_dispatch();
Dispatcher *dispatcher;
bool do_dispatch();
MessageSlot disconn_filter;
bool disconn_filter_function(const Message &);
MessageSlot disconn_filter;
bool disconn_filter_function(const Message &);
Server::Private *server;
void detach_server();
Server::Private *server;
void detach_server();
Private(DBusConnection *, Server::Private * = NULL);
Private(DBusConnection *, Server::Private * = NULL);
Private(DBusBusType);
Private(DBusBusType);
~Private();
~Private();
void init();
void init();
DBusDispatchStatus dispatch_status();
bool has_something_to_dispatch();
DBusDispatchStatus dispatch_status();
bool has_something_to_dispatch();
static void dispatch_status_stub(DBusConnection *, DBusDispatchStatus, void *);
static void dispatch_status_stub(DBusConnection *, DBusDispatchStatus, void *);
static DBusHandlerResult message_filter_stub(DBusConnection *, DBusMessage *, void *);
static DBusHandlerResult message_filter_stub(DBusConnection *, DBusMessage *, void *);
};
} /* namespace DBus */