diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-11 11:13:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-04-15 15:43:50 (GMT) |
commit | 24b7f31d3a2a464cef5955648e4a152a19d44890 (patch) | |
tree | 826e41d3a424645639f21ecdbe8d9f586edd77da /Source/cmake.h | |
parent | 0aec49132885be07e1d92a4a1db58f4c6c4c2844 (diff) | |
download | CMake-24b7f31d3a2a464cef5955648e4a152a19d44890.zip CMake-24b7f31d3a2a464cef5955648e4a152a19d44890.tar.gz CMake-24b7f31d3a2a464cef5955648e4a152a19d44890.tar.bz2 |
cmake: Remove unused cmCommand methods.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r-- | Source/cmake.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/cmake.h b/Source/cmake.h index e7a8acb..359e7bf 100644 --- a/Source/cmake.h +++ b/Source/cmake.h @@ -24,7 +24,6 @@ class cmGlobalGeneratorFactory; class cmGlobalGenerator; class cmLocalGenerator; class cmMakefile; -class cmCommand; class cmVariableWatch; class cmFileTimeComparison; class cmExternalMakefileProjectGenerator; @@ -216,21 +215,6 @@ class cmake */ int GetSystemInformation(std::vector<std::string>&); - /** - * Add a command to this cmake instance - */ - void AddCommand(cmCommand* ); - void RenameCommand(const std::string& oldName, const std::string& newName); - void RemoveUnscriptableCommands(); - - /** - * Get a command by its name - */ - cmCommand *GetCommand(const std::string& name) const; - - /** Check if a command exists. */ - bool CommandExists(const std::string& name) const; - ///! Parse command line arguments void SetArgs(const std::vector<std::string>&, bool directoriesSetBefore = false); |