![]() |
|
|
Generated: 18 Jul 2008 |


It is useful to e.g. increase the default file parameters like LRECL, mode , etc... In particular it is nesessary to obtain *LARGE* HBOOK-files
The tool has 3 properties
Definition at line 61 of file HbookTool.cpp.
Public Member Functions | |
| HbookTool (const std::string &type, const std::string &name, const IInterface *parent) | |
| Standard constructor. | |
| virtual | ~HbookTool () |
Private Attributes | |
| int | m_LRECL |
| Destructor. | |
| int | m_NRECL |
| std::string | m_MODE |
| HbookTool::HbookTool | ( | const std::string & | type, | |
| const std::string & | name, | |||
| const IInterface * | parent | |||
| ) | [inline] |
Standard constructor.
| type | the actual tool type (?) | |
| name | tool name | |
| parent | tool parent |
Definition at line 70 of file HbookTool.cpp.
References AlgTool::declareProperty(), m_LRECL, m_MODE, and m_NRECL.
00073 : AlgTool( type , name , parent ) 00074 // 00075 , m_LRECL ( 1024 ) 00076 , m_NRECL ( -1 ) 00077 , m_MODE ( "P" ) 00078 { 00079 declareProperty ( "LRECL" , m_LRECL ) ; 00080 declareProperty ( "NRECL" , m_NRECL ) ; 00081 declareProperty ( "MODE" , m_MODE ) ; 00082 };
| virtual HbookTool::~HbookTool | ( | ) | [inline, virtual] |
int HbookTool::m_LRECL [private] |
int HbookTool::m_NRECL [private] |
std::string HbookTool::m_MODE [private] |