mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-28 07:03:10 +08:00
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
/*$file${.::history.h} #####################################################*/
|
|
/*
|
|
* Model: history.qm
|
|
* File: ${.::history.h}
|
|
*
|
|
* This code has been generated by QM 4.3.1 (https://www.state-machine.com/qm).
|
|
* DO NOT EDIT THIS FILE MANUALLY. All your changes will be lost.
|
|
*
|
|
* This program is open source software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
/*$endhead${.::history.h} ##################################################*/
|
|
#ifndef history_h
|
|
#define history_h
|
|
|
|
enum ToastOvenSignals {
|
|
OPEN_SIG = Q_USER_SIG,
|
|
CLOSE_SIG,
|
|
TOAST_SIG,
|
|
BAKE_SIG,
|
|
OFF_SIG,
|
|
TERMINATE_SIG /* terminate the application */
|
|
};
|
|
|
|
extern QHsm * const the_oven; /* opaque pointer to the oven HSM */
|
|
|
|
/*$declare${SMs::ToastOven_ctor} ###########################################*/
|
|
/*${SMs::ToastOven_ctor} ...................................................*/
|
|
void ToastOven_ctor(void);
|
|
/*$enddecl${SMs::ToastOven_ctor} ###########################################*/
|
|
|
|
#endif /* history_h */ |