------------------------------------------------------------------- Pushes a new directory onto the directory stack. */
| 169 | // ------------------------------------------------------------------- |
| 170 | /** Pushes a new directory onto the directory stack. */ |
| 171 | bool PushDirectory(const std::string &path ) { |
| 172 | ai_assert( nullptr != mWrapped ); |
| 173 | return mWrapped->PushDirectory(path); |
| 174 | } |
| 175 | |
| 176 | // ------------------------------------------------------------------- |
| 177 | /** Returns the top directory from the stack. */ |
no outgoing calls
no test coverage detected