#ifndef __BOT_H__ #define __BOT_H__ #include "maze.h" #include "collections.h" class Bot { public: Bot( Maze& m ); bool solve(); private: bool findSolution( DirStack& stack ); Maze& maze; }; #endif // __BOT_H__