namespace Shiboken { template<> struct Converter : public Converter { static PyObject* toPython(void* cppObj) { return toPython(*reinterpret_cast(cppObj)); } static PyObject* toPython(const QStringRef& cppObj) { return Converter::toPython(cppObj.toString()); } static QStringRef toCpp(PyObject* pyObj) { return QStringRef(); } }; }