diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-09-29 11:56:25 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-09-29 11:56:25 (GMT) |
commit | 7488e43d6951402246d83f47bbe1ebce9f05e71e (patch) | |
tree | 844c446d12c795de48045900217d75d0e9bf5ef2 /Source/kwsys/CommandLineArguments.hxx.in | |
parent | a58b87378db8023245b8117f37972270e785cf6e (diff) | |
download | CMake-7488e43d6951402246d83f47bbe1ebce9f05e71e.zip CMake-7488e43d6951402246d83f47bbe1ebce9f05e71e.tar.gz CMake-7488e43d6951402246d83f47bbe1ebce9f05e71e.tar.bz2 |
ENH: Add access to last argument parsed
Diffstat (limited to 'Source/kwsys/CommandLineArguments.hxx.in')
-rw-r--r-- | Source/kwsys/CommandLineArguments.hxx.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/kwsys/CommandLineArguments.hxx.in b/Source/kwsys/CommandLineArguments.hxx.in index 630de59..a3bfc3f 100644 --- a/Source/kwsys/CommandLineArguments.hxx.in +++ b/Source/kwsys/CommandLineArguments.hxx.in @@ -142,6 +142,12 @@ public: */ const char* GetArgv0(); + /** + * Get index of the last argument parsed. This is the last argument that was + * parsed ok in the original argc/argv list. + */ + unsigned int GetLastArgument(); + protected: void GenerateHelp(); |