| 605 | const char* GetNodeMapArrayName(int index) { return this->GetObjectName(NODE_MAP, index); } |
| 606 | int GetNodeMapArrayStatus(const char* name) { return this->GetObjectStatus(NODE_MAP, name); } |
| 607 | void SetNodeMapArrayStatus(const char* name, int flag) |
| 608 | { |
| 609 | this->SetObjectStatus(NODE_MAP, name, flag); |
| 610 | } |
| 611 | |
| 612 | int GetNumberOfEdgeMapArrays() { return this->GetNumberOfObjects(EDGE_MAP); } |
| 613 | const char* GetEdgeMapArrayName(int index) { return this->GetObjectName(EDGE_MAP, index); } |
nothing calls this directly
no test coverage detected