Namespace protected set methods
| 349 | |
| 350 | // Namespace protected set methods |
| 351 | static bool setClass( void *object, const char *index, const char *data ) |
| 352 | { static_cast<SimObject*>(object)->setClassNamespace(data); return false; }; |
| 353 | static bool setSuperClass(void *object, const char *index, const char *data) |
| 354 | { static_cast<SimObject*>(object)->setSuperClassNamespace(data); return false; }; |
| 355 |
nothing calls this directly
no test coverage detected