| 637 | const char* GetNodeSetArrayName(int index) { return this->GetObjectName(NODE_SET, index); } |
| 638 | int GetNodeSetArrayStatus(const char* name) { return this->GetObjectStatus(NODE_SET, name); } |
| 639 | void SetNodeSetArrayStatus(const char* name, int flag) |
| 640 | { |
| 641 | this->SetObjectStatus(NODE_SET, name, flag); |
| 642 | } |
| 643 | |
| 644 | int GetNumberOfSideSetArrays() { return this->GetNumberOfObjects(SIDE_SET); } |
| 645 | const char* GetSideSetArrayName(int index) { return this->GetObjectName(SIDE_SET, index); } |
nothing calls this directly
no test coverage detected