| 298 | { |
| 299 | |
| 300 | static std::string getPySideModuleName(const std::string& moduleName) |
| 301 | { |
| 302 | std::string name(ModulePySide); |
| 303 | name += '.'; |
| 304 | name += moduleName; |
| 305 | |
| 306 | return name; |
| 307 | } |
| 308 | |
| 309 | #ifdef HAVE_SHIBOKEN_TYPEINITSTRUCT |
| 310 | static bool loadPySideModule(const std::string& moduleName, Shiboken::Module::TypeInitStruct*& types) |
no outgoing calls
no test coverage detected