| 629 | const char* GetElementMapArrayName(int index) { return this->GetObjectName(ELEM_MAP, index); } |
| 630 | int GetElementMapArrayStatus(const char* name) { return this->GetObjectStatus(ELEM_MAP, name); } |
| 631 | void SetElementMapArrayStatus(const char* name, int flag) |
| 632 | { |
| 633 | this->SetObjectStatus(ELEM_MAP, name, flag); |
| 634 | } |
| 635 | |
| 636 | int GetNumberOfNodeSetArrays() { return this->GetNumberOfObjects(NODE_SET); } |
| 637 | const char* GetNodeSetArrayName(int index) { return this->GetObjectName(NODE_SET, index); } |
nothing calls this directly
no test coverage detected