![]() |
Mixed Data Coincidence Analysis Software 1.0
A program to analyze files produced by the EventMixer software.
|
Represents an argument the program expects on the command line. More...
#include <CommandLineArgument.hh>
Public Member Functions | |
CommandLineArgument () | |
Constructor, sets the members to default values. | |
CommandLineArgument (string mFlag, int mNumberOfArguments) | |
Constructor, sets the members to the values sent. | |
Public Attributes | |
string | flag |
The flag (without the -) which should be expected. | |
int | numberOfArguments |
The number of arguments to be expected. |
Represents an argument the program expects on the command line.
Sent to the CommandLineInterpreter, this class will throw a CommandLineException if it encounters a flag it does not recognize.
Definition at line 25 of file CommandLineArgument.hh.
CommandLineArgument::CommandLineArgument | ( | string | mFlag, |
int | mNumberOfArguments | ||
) |
Constructor, sets the members to the values sent.
mFlag | flag = mFlag |
mNumberOfArguments | numberOfArguments = mNumberOfArguments |
Definition at line 8 of file CommandLineArgument.cc.
References flag, and numberOfArguments.
{ flag=mFlag; numberOfArguments = mNumberOfArguments; }