mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-14 06:43:19 +08:00
10 lines
214 B
C
10 lines
214 B
C
void Calc_ctor(Calc * const me) {
|
|
/* superclass' ctor */
|
|
QMsm_ctor(&me->super, Q_STATE_CAST(&Calc_initial));
|
|
|
|
me->operand1 = 0.0;
|
|
me->operand2 = 0.0;
|
|
me->len = 0U;
|
|
me->opKey = 0U;
|
|
}
|