mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-02-04 06:13:00 +08:00
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
//$file${.::blinky.h} ########################################################
|
|
//
|
|
// Model: blinky.qm
|
|
// File: ${.::blinky.h}
|
|
//
|
|
// This code has been generated by QM 4.2.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${.::blinky.h} #####################################################
|
|
#ifndef blinky_h
|
|
#define blinky_h
|
|
|
|
enum BlinkySignals {
|
|
DUMMY_SIG = QP::Q_USER_SIG,
|
|
MAX_PUB_SIG, // the last published signal
|
|
|
|
TIMEOUT_SIG,
|
|
MAX_SIG // the last signal
|
|
};
|
|
|
|
extern QP::QActive * const AO_Blinky; // opaque pointer
|
|
|
|
#endif // blinky
|