13 lines
319 B
C++
13 lines
319 B
C++
// overloads, specializations & instantiations for pEp-sepcific data types.
|
|
|
|
#ifndef PEP_TYPES_HH
|
|
#define PEP_TYPES_HH
|
|
|
|
#include "function_map.hh"
|
|
#include <pEp/message_api.h>
|
|
|
|
// in pEpEngine.h positive values are hex, negative are decimal. :-o
|
|
std::string status_to_string(PEP_STATUS status);
|
|
|
|
#endif // PEP_TYPES_HH
|