00001 #ifndef HEADER_FINDERPLACE_H 00002 #define HEADER_FINDERPLACE_H 00003 00004 #include "Dir.h" 00005 #include "V2.h" 00006 00007 /** 00008 * Place with some info used for finding. 00009 */ 00010 class FinderPlace { 00011 private: 00012 Dir::eDir m_startDir; 00013 V2 m_loc; 00014 public: 00015 FinderPlace(Dir::eDir startDir, const V2 &loc) 00016 : m_startDir(startDir), m_loc(loc) {} 00017 V2 getLoc() const { return m_loc; } 00018 Dir::eDir getStartDir() const { return m_startDir; } 00019 }; 00020 00021 #endif