diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-07-27 13:49:37 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-07-27 13:49:37 (GMT) |
commit | f85f919dbc37e01f9ef8dfdc9e4db9e413fbf20e (patch) | |
tree | 48a12d7d807566cc6de90bd986d2b5de23012973 /Source/cmDependsJava.h | |
parent | 90cefde755e6bc4b04ce74ae9b886f2ce3633e96 (diff) | |
download | CMake-f85f919dbc37e01f9ef8dfdc9e4db9e413fbf20e.zip CMake-f85f919dbc37e01f9ef8dfdc9e4db9e413fbf20e.tar.gz CMake-f85f919dbc37e01f9ef8dfdc9e4db9e413fbf20e.tar.bz2 |
ENH: reduce the number of files produced still needs a bit more cleanup
Diffstat (limited to 'Source/cmDependsJava.h')
-rw-r--r-- | Source/cmDependsJava.h | 11 |
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. |