Public Member Functions | |
| ACE_Get_Opt_Long_Option (const ACE_TCHAR *name, int has_arg, int val=0) | |
| ctor | |
| ~ACE_Get_Opt_Long_Option (void) | |
| Dtor. | |
| bool | operator< (const ACE_Get_Opt_Long_Option &rhs) |
Public Attributes | |
| const ACE_TCHAR * | name_ |
| Long option name. | |
| int | has_arg_ |
| Contains value for . | |
| int | val_ |
Definition at line 364 of file Get_Opt.h.
|
||||||||||||||||
|
ctor
Definition at line 724 of file Get_Opt.cpp. References ACE_TCHAR.
|
|
|
Dtor.
Definition at line 733 of file Get_Opt.cpp.
00734 {
00735 delete [] this->name_;
00736 }
|
|
|
Definition at line 8 of file Get_Opt.inl. References name_.
00009 {
00010 return this->name_ < rhs.name_;
00011 }
|
|
|
Contains value for .
Definition at line 381 of file Get_Opt.h. Referenced by ACE_Get_Opt::long_option_i(). |
|
|
Long option name.
Definition at line 378 of file Get_Opt.h. Referenced by ACE_Get_Opt::long_option(), ACE_Get_Opt::long_option_i(), and operator<(). |
|
|
Contains a valid short option character or zero if it doesn't have a corresponding short option. It can also contain a non-printable value that cannot be passed to but will be returned by <operator()>. This is handy for simplifying long option handling, see tests/Get_Opt_Test.cpp for an example of this technique. Definition at line 389 of file Get_Opt.h. Referenced by ACE_Get_Opt::long_option_i(). |
1.3.6