| 511 | const char* GetEdgeBlockArrayName(int index) { return this->GetObjectName(EDGE_BLOCK, index); } |
| 512 | int GetEdgeBlockArrayStatus(const char* name) { return this->GetObjectStatus(EDGE_BLOCK, name); } |
| 513 | void SetEdgeBlockArrayStatus(const char* name, int flag) |
| 514 | { |
| 515 | this->SetObjectStatus(EDGE_BLOCK, name, flag); |
| 516 | } |
| 517 | |
| 518 | int GetNumberOfFaceBlockArrays() { return this->GetNumberOfObjects(FACE_BLOCK); } |
| 519 | const char* GetFaceBlockArrayName(int index) { return this->GetObjectName(FACE_BLOCK, index); } |
nothing calls this directly
no test coverage detected