diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-05-11 17:16:45 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-05-11 17:16:45 (GMT) |
commit | c85069b290922572f9ef15a06ec1d0d0be3adaaa (patch) | |
tree | 8ba1f7b378a0295cea5f550cd8fcb76cb676985e /Source/cmDependsJava.h | |
parent | 25d6c04add53631d6506674c3584fc0d8a6e0d46 (diff) | |
download | CMake-c85069b290922572f9ef15a06ec1d0d0be3adaaa.zip CMake-c85069b290922572f9ef15a06ec1d0d0be3adaaa.tar.gz CMake-c85069b290922572f9ef15a06ec1d0d0be3adaaa.tar.bz2 |
ENH: some changes to the depends signature to be more flexible
Diffstat (limited to 'Source/cmDependsJava.h')
-rw-r--r-- | Source/cmDependsJava.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmDependsJava.h b/Source/cmDependsJava.h index 579dad2..69466fc 100644 --- a/Source/cmDependsJava.h +++ b/Source/cmDependsJava.h @@ -27,13 +27,12 @@ class cmDependsJava: public cmDepends public: /** Checking instances need to know the build directory name and the relative path from the build directory to the target file. */ - cmDependsJava(const char* dir, const char* targetFile, bool verbose); + 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* dir, const char* targetFile, - const char* sourceFile); + cmDependsJava(const char* sourceFile); /** Virtual destructor to cleanup subclasses properly. */ virtual ~cmDependsJava(); |