ROSE  0.11.145.0
IncludeDirective.h
1 #include <string>
2 
3 using namespace std;
4 
6 private:
7  size_t startPos;
8  string directiveText;
9  string includedPath;
10  bool isQuotedIncludeDirective;
11 
12 public:
13  IncludeDirective(const string& directiveText);
14  string getIncludedPath();
15  bool isQuotedInclude();
16  size_t getStartPos();
17 };
STL namespace.