##// END OF EJS Templates
Removed useless Visualization CTRLR component...
Removed useless Visualization CTRLR component Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r67:a8a4e48c21af
r90:64a22e9756a8
Show More
pywrappers_common.h
16 lines | 308 B | text/x-c | CLexer
First init from SciQLop Core module...
r0 #ifndef PYWRAPPERS_COMMON_H
#define PYWRAPPERS_COMMON_H
#include <QString>
#include <QUuid>
#include <pybind11/pybind11.h>
Switched to new TS impl, but quite broken!...
r67 #include <sstream>
#include <string>
First init from SciQLop Core module...
r0
Switched to new TS impl, but quite broken!...
r67 template<typename T> std::string __repr__(T& obj)
First init from SciQLop Core module...
r0 {
Switched to new TS impl, but quite broken!...
r67 std::stringstream sstr;
sstr << obj;
return sstr.str();
First init from SciQLop Core module...
r0 }
Switched to new TS impl, but quite broken!...
r67 #endif // PYWRAPPERS_COMMON_H