You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
345 B
21 lines
345 B
#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
|