diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-06 17:19:15 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-06 17:19:15 (GMT) |
commit | 99221554236a3b39601d798ca3f793990e22a4a1 (patch) | |
tree | 2f73b9adf5ed692bb44d2a14782b38c1fc715d38 /Source/cmCablePackageEntryCommand.h | |
parent | 72e8b44793dfa7881479d8746397b87a572b99f9 (diff) | |
download | CMake-99221554236a3b39601d798ca3f793990e22a4a1.zip CMake-99221554236a3b39601d798ca3f793990e22a4a1.tar.gz CMake-99221554236a3b39601d798ca3f793990e22a4a1.tar.bz2 |
ENH: rename Invoke to InitialPass
Diffstat (limited to 'Source/cmCablePackageEntryCommand.h')
-rw-r--r-- | Source/cmCablePackageEntryCommand.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCablePackageEntryCommand.h b/Source/cmCablePackageEntryCommand.h index 3759347..4e1a439 100644 --- a/Source/cmCablePackageEntryCommand.h +++ b/Source/cmCablePackageEntryCommand.h @@ -47,9 +47,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /** \class cmCablePackageEntryCommand * \brief Superclass to all CABLE Package entry generation commands. * - * cmCablePackageEntryCommand implements the Invoke method of a cmCommand + * cmCablePackageEntryCommand implements the InitialPass method of a cmCommand * to save the arguments as a vector of entries to a CABLE Package. The - * Invoke then calls the virtual WriteConfiguration() so that the subclass + * InitialPass then calls the virtual WriteConfiguration() so that the subclass * can generate the configuration code for its particular type of Package * entry. */ @@ -63,7 +63,7 @@ public: * This is called when the command is first encountered in * the CMakeLists.txt file. */ - virtual bool Invoke(std::vector<std::string>& args); + virtual bool InitialPass(std::vector<std::string>& args); cmTypeMacro(cmCablePackageEntryCommand, cmCableCommand); |