| 50 | { |
| 51 | public: |
| 52 | OpenQueue( Graph* _graph ) |
| 53 | { |
| 54 | graph = _graph; |
| 55 | sentinel = (PathNode*) sentinelMem; |
| 56 | sentinel->InitSentinel(); |
| 57 | #ifdef DEBUG |
| 58 | sentinel->CheckList(); |
| 59 | #endif |
| 60 | } |
| 61 | ~OpenQueue() {} |
| 62 | |
| 63 | void Push( PathNode* pNode ); |
nothing calls this directly
no test coverage detected