diff options
Diffstat (limited to 'Source/cmDependsC.h')
-rw-r--r-- | Source/cmDependsC.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmDependsC.h b/Source/cmDependsC.h index 8cc8842..0a0bc36 100644 --- a/Source/cmDependsC.h +++ b/Source/cmDependsC.h @@ -50,6 +50,11 @@ protected: // Method to scan a single file. void Scan(std::istream& is, const char* directory); + // Method to parse a single dependency line. + bool ParseDependency(const char* line, std::string& depender, + std::string& dependee); + const char* ParseFileName(const char* in, std::string& name); + // The source file from which to start scanning. std::string m_SourceFile; |