#include <SSAHAMain.h>
Inheritance diagram for CommandLineArgInt:


Public Member Functions | |
| CommandLineArgInt (const string &nameLong, const string &nameShort, int &destination) | |
| void | addValue (const string &value) |
Protected Attributes | |
| int & | destination_ |
Definition at line 208 of file SSAHAMain.h.
| CommandLineArgInt::CommandLineArgInt | ( | const string & | nameLong, | |
| const string & | nameShort, | |||
| int & | destination | |||
| ) | [inline] |
Definition at line 212 of file SSAHAMain.h.
00212 : 00213 CommandLineArg( nameLong, nameShort ), destination_( destination ) {} void addValue( const string& value )
| void CommandLineArgInt::addValue | ( | const string & | value | ) | [inline, virtual] |
Implements CommandLineArg.
Definition at line 214 of file SSAHAMain.h.
References destination_.
00215 { 00216 destination_ = atoi(value.c_str()); 00217 }
int& CommandLineArgInt::destination_ [protected] |
1.5.2