Namespace protected set methods
| 355 | |
| 356 | // Namespace protected set methods |
| 357 | static bool setClass( void *object, const char *index, const char *data ) |
| 358 | { static_cast<SimObject*>(object)->setClassNamespace(data); return false; }; |
| 359 | static bool setSuperClass(void *object, const char *index, const char *data) |
| 360 | { static_cast<SimObject*>(object)->setSuperClassNamespace(data); return false; }; |
| 361 |
nothing calls this directly
no test coverage detected