CMake: Slim down BuildDirManager's interface

* Make parse() private

Change-Id: I587f72296e4520ed62db06b7d46987907975eb2d
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Tobias Hunger
2016-10-12 17:47:36 +02:00
parent d9d752cf13
commit fe23c71414

View File

@@ -72,7 +72,6 @@ public:
bool isParsing() const; bool isParsing() const;
void parse();
void clearCache(); void clearCache();
void forceReparse(); void forceReparse();
void maybeForceReparse(); // Only reparse if the configuration has changed... void maybeForceReparse(); // Only reparse if the configuration has changed...
@@ -107,6 +106,8 @@ protected:
const CMakeConfig intendedConfiguration() const; const CMakeConfig intendedConfiguration() const;
private: private:
void parse();
void cmakeFilesChanged(); void cmakeFilesChanged();
void stopProcess(); void stopProcess();