CLI2: Removed unused ::initialize method

This commit is contained in:
Paul Beckingham 2015-06-20 09:26:53 -07:00
parent 82cf7155cc
commit 2c4cd8b06a
2 changed files with 0 additions and 18 deletions

View file

@ -438,23 +438,6 @@ void CLI2::analyze ()
}
/*
////////////////////////////////////////////////////////////////////////////////
// Capture the original, intact command line arguments.
void CLI2::initialize (int argc, const char** argv)
{
// Clean what needs to be cleaned. Everything in this case.
_original_args.clear ();
_id_ranges.clear ();
_uuid_list.clear ();
_terminated = false;
_original_args.push_back (argv[0]);
for (int i = 1; i < argc; ++i)
addArg (argv[i]);
analyze ();
}
////////////////////////////////////////////////////////////////////////////////
// Capture a single argument, and recalc everything.
void CLI2::add (const std::string& arg)

View file

@ -82,7 +82,6 @@ public:
void add (const std::string&);
void analyze ();
/*
void initialize (int, const char**);
void add (const std::string&);
void addContextFilter ();
void addRawFilter (const std::string& arg);