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.
44 lines
1.0 KiB
44 lines
1.0 KiB
// This file is under GNU Affero General Public License 3.0
|
|
// see LICENSE.txt
|
|
|
|
#ifndef STR_ATTR_HH
|
|
#define STR_ATTR_HH
|
|
|
|
// System
|
|
#include <string>
|
|
|
|
// Engine
|
|
#include <pEp/pEpEngine.h>
|
|
#include <pEp/timestamp.h>
|
|
#include <pEp/stringlist.h>
|
|
#include <pEp/stringpair.h>
|
|
#include <pEp/platform.h>
|
|
|
|
namespace pEp {
|
|
namespace PythonAdapter {
|
|
using std::string;
|
|
using boost::python::object;
|
|
using boost::python::dict;
|
|
|
|
object repr(object s);
|
|
string repr(string s);
|
|
|
|
string str_attr(char *&str);
|
|
void str_attr(char *&str, string value);
|
|
|
|
time_t timestamp_attr(timestamp *&ts);
|
|
void timestamp_attr(timestamp *&ts, time_t value);
|
|
|
|
boost::python::list strlist_attr(stringlist_t *&sl);
|
|
void strlist_attr(stringlist_t *&sl, boost::python::list value);
|
|
|
|
dict strdict_attr(stringpair_list_t *&spl);
|
|
void strdict_attr(stringpair_list_t *&spl, dict value);
|
|
|
|
stringlist_t *to_stringlist(boost::python::list l);
|
|
boost::python::list from_stringlist(const stringlist_t *sl);
|
|
|
|
} /* namespace PythonAdapter */
|
|
} /* namespace pEp */
|
|
|
|
#endif /* STR_ATTR_HH */
|