#include </home/scilab/compilation_chain/sci_checkOut/scilab/modules/history_manager/src/cpp/CommandLine.hxx>
Public Member Functions | |
| CommandLine (void) | |
| CommandLine (std::string line_) | |
| ~CommandLine () | |
| std::string | get (void) |
| BOOL | set (std::string line_) |
Private Attributes | |
| std::string | Command |
Definition at line 25 of file CommandLine.hxx.
| CommandLine::CommandLine | ( | void | ) |
| CommandLine::CommandLine | ( | std::string | line_ | ) |
Constructor CommandLine
| line_ | : a string |
Definition at line 20 of file CommandLine.cpp.
References Command.
00021 { 00022 this->Command = line_ ; 00023 }
| CommandLine::~CommandLine | ( | ) |
Destructor CommandLine
Definition at line 25 of file CommandLine.cpp.
References Command.
00026 { 00027 Command.erase(); 00028 }
| std::string CommandLine::get | ( | void | ) |
get command line
Definition at line 30 of file CommandLine.cpp.
References Command.
00031 { 00032 return Command ; 00033 }
| BOOL CommandLine::set | ( | std::string | line_ | ) |
std::string CommandLine::Command [private] |
Definition at line 60 of file CommandLine.hxx.
Referenced by CommandLine(), get(), set(), and ~CommandLine().
1.5.5