pEpDBusAdapter/pep-server.cpp

21 lines
315 B
C++
Raw Normal View History

2021-03-14 00:46:29 +01:00
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include "pep-server.h"
2021-10-24 00:07:23 +02:00
pEp::Server::Server(DBus::Connection &connection) :
DBus::ObjectAdaptor(connection, "/security/pep"),
pEpDBusAdapter()
2021-03-14 00:46:29 +01:00
{
}
pEp::Server::~Server()
2021-10-24 00:07:23 +02:00
{}
2021-03-14 00:46:29 +01:00