Main Page | Class Hierarchy | Alphabetical List | Data Structures | File List | Data Fields | Globals

location.h

Go to the documentation of this file.
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

Generated on Fri Nov 21 17:54:02 2003 for PHPX by doxygen 1.3.3