mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-13 22:24:39 -04:00
added some comments
This commit is contained in:
parent
5f1a3d79e3
commit
289b1a1396
@ -93,7 +93,18 @@ class CmdLine
|
|||||||
*/
|
*/
|
||||||
XorHandler _xorHandler;
|
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;
|
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;
|
std::list<Visitor*> _visitorDeleteOnExitList;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -165,7 +176,9 @@ class CmdLine
|
|||||||
const char delimiter = ' ',
|
const char delimiter = ' ',
|
||||||
const std::string& version = "none" );
|
const std::string& version = "none" );
|
||||||
|
|
||||||
///Deletes any resources allocated by a CmdLine object
|
/**
|
||||||
|
* Deletes any resources allocated by a CmdLine object.
|
||||||
|
*/
|
||||||
~CmdLine();
|
~CmdLine();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user