diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-09-14 15:48:34 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-09-14 15:48:34 (GMT) |
commit | c30e7771ee3678adad173903458d71972d77c1e7 (patch) | |
tree | bda7c63706894904958cedb854f6fdfbf2ca025f | |
parent | 899be21cdea9ecdcf2f4f411090f5b6b0a03061a (diff) | |
download | CMake-c30e7771ee3678adad173903458d71972d77c1e7.zip CMake-c30e7771ee3678adad173903458d71972d77c1e7.tar.gz CMake-c30e7771ee3678adad173903458d71972d77c1e7.tar.bz2 |
ERR: Fix borland build
-rw-r--r-- | Source/kwsys/CommandLineArguments.cxx | 12 | ||||
-rw-r--r-- | Source/kwsys/CommandLineArguments.hxx.in | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Source/kwsys/CommandLineArguments.cxx b/Source/kwsys/CommandLineArguments.cxx index d374ad6..334c143 100644 --- a/Source/kwsys/CommandLineArguments.cxx +++ b/Source/kwsys/CommandLineArguments.cxx @@ -102,6 +102,18 @@ void CommandLineArguments::Initialize(int argc, const char* const argv[]) } //---------------------------------------------------------------------------- +void CommandLineArguments::Initialize(int argc, char* argv[]) +{ + int cc; + + this->Initialize(); + for ( cc = 1; cc < argc; cc ++ ) + { + this->ProcessArgument(argv[cc]); + } +} + +//---------------------------------------------------------------------------- void CommandLineArguments::Initialize() { this->Internals->Argv.clear(); diff --git a/Source/kwsys/CommandLineArguments.hxx.in b/Source/kwsys/CommandLineArguments.hxx.in index 70ef2d3..6671516 100644 --- a/Source/kwsys/CommandLineArguments.hxx.in +++ b/Source/kwsys/CommandLineArguments.hxx.in @@ -86,6 +86,7 @@ public: * Initialize internal data structures. This should be called before parsing. */ void Initialize(int argc, const char* const argv[]); + void Initialize(int argc, char* argv[]); /** * Initialize internal data structure and pass arguments one by one. This is |