summaryrefslogtreecommitdiffstats
path: root/Source/cmDependsJava.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmDependsJava.h')
-rw-r--r--Source/cmDependsJava.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/Source/cmDependsJava.h b/Source/cmDependsJava.h
index 69466fc..473567d 100644
--- a/Source/cmDependsJava.h
+++ b/Source/cmDependsJava.h
@@ -29,22 +29,15 @@ public:
relative path from the build directory to the target file. */
cmDependsJava();
- /** Scanning need to know the build directory name, the relative
- path from the build directory to the target file and the source
- file to scan. */
- cmDependsJava(const char* sourceFile);
-
/** Virtual destructor to cleanup subclasses properly. */
virtual ~cmDependsJava();
protected:
// Implement writing/checking methods required by superclass.
- virtual bool WriteDependencies(std::ostream& os);
+ virtual bool WriteDependencies(const char *src,
+ const char *file, std::ostream& os);
virtual bool CheckDependencies(std::istream& is);
- // The source file from which to start scanning.
- std::string m_SourceFile;
-
private:
cmDependsJava(cmDependsJava const&); // Purposely not implemented.
void operator=(cmDependsJava const&); // Purposely not implemented.