IncludeDirective.h

Go to the documentation of this file.
00001 #include <string>
00002 
00003 using namespace std;
00004 
00005 class IncludeDirective {
00006 private:
00007     size_t startPos;
00008     string directiveText;
00009     string includedPath;
00010     bool isQuotedIncludeDirective;
00011 
00012 public:
00013     IncludeDirective(const string& directiveText);
00014     string getIncludedPath();
00015     bool isQuotedInclude();
00016     size_t getStartPos();
00017 };

Generated on Wed May 16 06:18:11 2012 for ROSE by  doxygen 1.4.7