mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-12 13:46:02 -04:00
added some comments
This commit is contained in:
parent
5f1a3d79e3
commit
289b1a1396
@ -93,7 +93,18 @@ class CmdLine
|
||||
*/
|
||||
XorHandler _xorHandler;
|
||||
|
||||
/**
|
||||
* A list of Args to be explicitly deleted when the destructor
|
||||
* is called. At the moment, this only includes the three default
|
||||
* Args.
|
||||
*/
|
||||
std::list<Arg*> _argDeleteOnExitList;
|
||||
|
||||
/**
|
||||
* A list of Visitors to be explicitly deleted when the destructor
|
||||
* is called. At the moment, these are the Vistors created for the
|
||||
* default Args.
|
||||
*/
|
||||
std::list<Visitor*> _visitorDeleteOnExitList;
|
||||
|
||||
/**
|
||||
@ -165,7 +176,9 @@ class CmdLine
|
||||
const char delimiter = ' ',
|
||||
const std::string& version = "none" );
|
||||
|
||||
///Deletes any resources allocated by a CmdLine object
|
||||
/**
|
||||
* Deletes any resources allocated by a CmdLine object.
|
||||
*/
|
||||
~CmdLine();
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user