| 2225 | //----------------------------------------------------------------------------- |
| 2226 | |
| 2227 | const char* SimObject::_getCanSave( void* object, const char* data ) |
| 2228 | { |
| 2229 | SimObject* obj = reinterpret_cast< SimObject* >( object ); |
| 2230 | if( obj->getCanSave() ) |
| 2231 | return "1"; |
| 2232 | else |
| 2233 | return "0"; |
| 2234 | } |
| 2235 | |
| 2236 | //--------------------------------------------------------------------------- |
| 2237 |
nothing calls this directly
no test coverage detected