| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hzCron::Initialize | (hzSDate&,hzPeriodicity,hzMonthrule,) |
Declared in file: hzCron.h
Defined in file : hzCron.cpp
Function Logic:
Function body:
hzEcode hzCron::Initialize (hzSDate& start, hzPeriodicity period, hzMonthrule mrule)
{
_hzfunc("hzCron::Initialize") ;
m_Era = start ;
if (period == HZPERIOD_NEVER)
{
m_error = "Periodicity not set" ;
return E_NOINIT ;
}
m_Period = period ;
return Validate() ;
}