#ifndef PYWRAPPERS_COMMON_H #define PYWRAPPERS_COMMON_H #include #include #include #include #include template std::string __repr__(const T& obj) { std::stringstream sstr; sstr << obj; return sstr.str(); } #endif //PYWRAPPERS_COMMON_H