21 lines
345 B
C++
21 lines
345 B
C++
#ifndef PEP_DBUS_SERVER_H
|
|
#define PEP_DBUS_SERVER_H
|
|
|
|
#include <dbus-c++/dbus.h>
|
|
|
|
#include "pep-dbus-adapter.h"
|
|
|
|
namespace pEp {
|
|
class Server
|
|
: public pEpDBusAdapter,
|
|
public DBus::IntrospectableAdaptor,
|
|
public DBus::ObjectAdaptor
|
|
{
|
|
public:
|
|
explicit Server(DBus::Connection &connection);
|
|
~Server();
|
|
};
|
|
}
|
|
|
|
#endif//__DEMO_ASYNC_SERVER_H
|