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.
17 lines
363 B
17 lines
363 B
#pragma once
|
|
|
|
#include <boost/python.hpp>
|
|
#include "identity.hh"
|
|
#include "message.hh"
|
|
#include "adapter.hh"
|
|
#include <pEp/pEpEngine.h>
|
|
|
|
namespace pEp {
|
|
namespace PythonAdapter {
|
|
void _throw_status(PEP_STATUS status);
|
|
void messageToSend(Message msg);
|
|
PEP_STATUS _messageToSend(::message *msg);
|
|
extern Adapter adapter;
|
|
}
|
|
}
|
|
|
|
|