mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-02-04 07:13:16 +08:00
9 lines
210 B
C
9 lines
210 B
C
void Calc_ctor(Calc * const me) {
|
|
QMsm_ctor(&me->super, Q_STATE_CAST(&Calc_initial)); /* superclass' ctor */
|
|
|
|
me->operand1 = 0.0;
|
|
me->operand2 = 0.0;
|
|
me->len = 0U;
|
|
me->opKey = 0U;
|
|
}
|