| 645 | const char* GetSideSetArrayName(int index) { return this->GetObjectName(SIDE_SET, index); } |
| 646 | int GetSideSetArrayStatus(const char* name) { return this->GetObjectStatus(SIDE_SET, name); } |
| 647 | void SetSideSetArrayStatus(const char* name, int flag) |
| 648 | { |
| 649 | this->SetObjectStatus(SIDE_SET, name, flag); |
| 650 | } |
| 651 | |
| 652 | int GetNumberOfEdgeSetArrays() { return this->GetNumberOfObjects(EDGE_SET); } |
| 653 | const char* GetEdgeSetArrayName(int index) { return this->GetObjectName(EDGE_SET, index); } |
nothing calls this directly
no test coverage detected