Browse Source

some formatting only, (cant we agree on softwrapping please, line width on my MBP 13" is around 2000)

pull/1/head
heck 5 years ago
parent
commit
4766b4c07b
  1. 12
      Adapter.hh
  2. 9
      Adapter.hxx

12
Adapter.hh

@ -30,12 +30,12 @@ namespace pEp {
template<class T = void>
void startup(
messageToSend_t messageToSend,
notifyHandshake_t notifyHandshake,
T *obj = nullptr,
std::function< void (T *) > _startup = nullptr,
std::function< void (T *) > _shutdown = nullptr
);
messageToSend_t messageToSend,
notifyHandshake_t notifyHandshake,
T *obj = nullptr,
std::function< void (T *) > _startup = nullptr,
std::function< void (T *) > _shutdown = nullptr
);
// returns 'true' when called from the "sync" thread, 'false' otherwise.
bool on_sync_thread();

9
Adapter.hxx

@ -24,7 +24,8 @@ namespace pEp {
static std::exception_ptr _ex;
static bool register_done = false;
template< class T > void sync_thread(T *obj, function< void(T *) > _startup, function< void(T *) > _shutdown)
template< class T >
void sync_thread(T *obj, function< void(T *) > _startup, function< void(T *) > _shutdown)
{
_ex = nullptr;
assert(_messageToSend);
@ -59,13 +60,13 @@ namespace pEp {
_shutdown(obj);
}
template< class T > void startup(
template< class T >
void startup(
messageToSend_t messageToSend,
notifyHandshake_t notifyHandshake,
T *obj,
function< void(T *) > _startup,
function< void(T *) > _shutdown
)
function< void(T *) > _shutdown)
{
if (messageToSend)
_messageToSend = messageToSend;

Loading…
Cancel
Save