##// END OF EJS Templates
Updated TS lib...
Updated TS lib Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r67:a8a4e48c21af
r88:4e4ec6844f70
Show More
pywrappers_common.h
16 lines | 308 B | text/x-c | CLexer
#ifndef PYWRAPPERS_COMMON_H
#define PYWRAPPERS_COMMON_H
#include <QString>
#include <QUuid>
#include <pybind11/pybind11.h>
#include <sstream>
#include <string>
template<typename T> std::string __repr__(T& obj)
{
std::stringstream sstr;
sstr << obj;
return sstr.str();
}
#endif // PYWRAPPERS_COMMON_H