Introduced Document::CheckMode.

This commit is contained in:
Roberto Raggi
2009-06-26 09:11:14 +02:00
parent 0b1bc40b65
commit fd8cd69a47
6 changed files with 48 additions and 22 deletions

View File

@@ -105,7 +105,12 @@ public:
bool isParsed() const;
bool parse(ParseMode mode = ParseTranlationUnit);
void check();
enum CheckMode {
FullCheck,
FastCheck
};
void check(CheckMode mode = FullCheck);
void releaseSource();
void releaseTranslationUnit();