00001 #ifndef _LOCATION_H_ 00002 #define _LOCATION_H_ 00003 00004 #include <string> 00005 00006 #ifndef DOXYSKIP 00007 using namespace std; 00008 #endif 00009 00010 class Location{ 00011 public: 00012 string comment; 00013 int lineno; 00014 00015 Location(const string &icomment, const int ilineno) : comment(icomment), lineno(ilineno) {}; 00016 00017 }; 00018 00019 00020 #endif