TCLAP::StdOutput Class Reference
#include <StdOutput.h>
Inherits TCLAP::CmdLineOutput.
List of all members.
Detailed Description
A class that isolates any output from the CmdLine object so that it may be easily modified.
Member Function Documentation
void TCLAP::StdOutput::_longUsage |
( |
CmdLineInterface & |
c, |
|
|
std::ostream & |
os | |
|
) |
| | const [inline, protected] |
Writes a longer usage message with long and short args, provides descriptions and prints message.
- Parameters:
-
| c | - The CmdLine object the output is generated for. |
| os | - The stream to write the message to. |
void TCLAP::StdOutput::_shortUsage |
( |
CmdLineInterface & |
c, |
|
|
std::ostream & |
os | |
|
) |
| | const [inline, protected] |
Writes a brief usage message with short args.
- Parameters:
-
| c | - The CmdLine object the output is generated for. |
| os | - The stream to write the message to. |
Prints (to stderr) an error message, short usage Can be overridden to produce alternative behavior.
- Parameters:
-
| c | - The CmdLine object the output is generated for. |
| e | - The ArgException that caused the failure. |
Implements TCLAP::CmdLineOutput.
void TCLAP::StdOutput::spacePrint |
( |
std::ostream & |
os, |
|
|
const std::string & |
s, |
|
|
int |
maxWidth, |
|
|
int |
indentSpaces, |
|
|
int |
secondLineOffset | |
|
) |
| | const [inline, protected] |
This function inserts line breaks and indents long strings according the params input. It will only break lines at spaces, commas and pipes.
- Parameters:
-
| os | - The stream to be printed to. |
| s | - The string to be printed. |
| maxWidth | - The maxWidth allowed for the output line. |
| indentSpaces | - The number of spaces to indent the first line. |
| secondLineOffset | - The number of spaces to indent the second and all subsequent lines in addition to indentSpaces. |
Prints the usage to stdout. Can be overridden to produce alternative behavior.
- Parameters:
-
| c | - The CmdLine object the output is generated for. |
Implements TCLAP::CmdLineOutput.
Prints the version to stdout. Can be overridden to produce alternative behavior.
- Parameters:
-
| c | - The CmdLine object the output is generated for. |
Implements TCLAP::CmdLineOutput.