mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-28 07:03:10 +08:00
10 lines
174 B
C
10 lines
174 B
C
typedef struct {
|
|
QMsm super; /* inherits QMsm */
|
|
|
|
double operand1;
|
|
double operand2;
|
|
char display[DISP_WIDTH + 1];
|
|
uint8_t len;
|
|
uint8_t opKey;
|
|
} Calc;
|