| 383 | int GetNumberOfObjectArrayComponents(int objectType, int arrayIndex); |
| 384 | int GetObjectArrayStatus(int objectType, int arrayIndex); |
| 385 | int GetObjectArrayStatus(int objectType, const char* arrayName) |
| 386 | { |
| 387 | return this->GetObjectArrayStatus(objectType, this->GetObjectArrayIndex(objectType, arrayName)); |
| 388 | } |
| 389 | void SetObjectArrayStatus(int objectType, int arrayIndex, int status); |
| 390 | void SetObjectArrayStatus(int objectType, const char* arrayName, int status); |
| 391 | ///@} |
nothing calls this directly
no test coverage detected