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 };
1.4.7