| 621 | const char* GetFaceMapArrayName(int index) { return this->GetObjectName(FACE_MAP, index); } |
| 622 | int GetFaceMapArrayStatus(const char* name) { return this->GetObjectStatus(FACE_MAP, name); } |
| 623 | void SetFaceMapArrayStatus(const char* name, int flag) |
| 624 | { |
| 625 | this->SetObjectStatus(FACE_MAP, name, flag); |
| 626 | } |
| 627 | |
| 628 | int GetNumberOfElementMapArrays() { return this->GetNumberOfObjects(ELEM_MAP); } |
| 629 | const char* GetElementMapArrayName(int index) { return this->GetObjectName(ELEM_MAP, index); } |
nothing calls this directly
no test coverage detected