| 661 | const char* GetFaceSetArrayName(int index) { return this->GetObjectName(FACE_SET, index); } |
| 662 | int GetFaceSetArrayStatus(const char* name) { return this->GetObjectStatus(FACE_SET, name); } |
| 663 | void SetFaceSetArrayStatus(const char* name, int flag) |
| 664 | { |
| 665 | this->SetObjectStatus(FACE_SET, name, flag); |
| 666 | } |
| 667 | |
| 668 | int GetNumberOfElementSetArrays() { return this->GetNumberOfObjects(ELEM_SET); } |
| 669 | const char* GetElementSetArrayName(int index) { return this->GetObjectName(ELEM_SET, index); } |
nothing calls this directly
no test coverage detected