##// END OF EJS Templates
Minor AppImage and Meson fixes...
Minor AppImage and Meson fixes Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r67:a8a4e48c21af
r81:854c0145877d
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