| 669 | const char* GetElementSetArrayName(int index) { return this->GetObjectName(ELEM_SET, index); } |
| 670 | int GetElementSetArrayStatus(const char* name) { return this->GetObjectStatus(ELEM_SET, name); } |
| 671 | void SetElementSetArrayStatus(const char* name, int flag) |
| 672 | { |
| 673 | this->SetObjectStatus(ELEM_SET, name, flag); |
| 674 | } |
| 675 | |
| 676 | int GetNumberOfNodeSetResultArrays() { return this->GetNumberOfObjectArrays(NODE_SET); } |
| 677 | const char* GetNodeSetResultArrayName(int index) |
nothing calls this directly
no test coverage detected