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.
19 lines
507 B
19 lines
507 B
#ifndef PEP_DBUS_CLIENT_H
|
|
#define PEP_DBUS_CLIENT_H
|
|
|
|
#include <pep-client-glue.h>
|
|
|
|
class pEpClient :
|
|
public security::pep_proxy,
|
|
public DBus::IntrospectableProxy,
|
|
public DBus::ObjectProxy
|
|
{
|
|
public:
|
|
pEpClient(DBus::Connection &connection, const char *path, const char *name);
|
|
void decryptMessage(const pEpDBusMessage& src, const pEpDBusStringList& keylist, const pEpDBusRating& rating,
|
|
const pEpDBusEncryptionFlags& flags, pEpDBusStatus& status, pEpDBusMessage& dst);
|
|
|
|
};
|
|
|
|
#endif
|