#include </home/zeitlin/src/wx/github/interface/wx/cmdline.h>
The structure wxCmdLineEntryDesc is used to describe a command line switch, option or parameter.
An array of such structures should be passed to wxCmdLineParser::SetDesc().
Note that the meanings of parameters of the wxCmdLineParser::AddXXX() functions are the same as of the corresponding fields in this structure.
Public Attributes | |
wxCmdLineEntryType | kind |
The kind of this program argument. | |
const char * | shortName |
スイッチやオプションのよくある、短い名前。 | |
const char * | longName |
The long name for this program argument (may be empty if the option has no long name). | |
const char * | description |
This description is used by the wxCmdLineParser::Usage() method to construct a help message explaining the syntax of the program. | |
wxCmdLineParamType | type |
The type associated with this option (ignored if kind != wxCMD_LINE_OPTION ). | |
int | flags |
A combination of one or more wxCmdLineEntryFlags enum values. |
const char* wxCmdLineEntryDesc::description |
This description is used by the wxCmdLineParser::Usage() method to construct a help message explaining the syntax of the program.
A combination of one or more wxCmdLineEntryFlags enum values.
The kind of this program argument.
See wxCmdLineEntryType for more info.
const char* wxCmdLineEntryDesc::longName |
The long name for this program argument (may be empty if the option has no long name).
It may contain only letters, digits and the underscores. This field is unused if kind == wxCMD_LINE_PARAM
.
const char* wxCmdLineEntryDesc::shortName |
スイッチやオプションのよくある、短い名前。
It may contain only letters, digits and the underscores. This field is unused if kind == wxCMD_LINE_PARAM
.
The type associated with this option (ignored if kind != wxCMD_LINE_OPTION
).
See wxCmdLineParamType for more info.