mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-28 06:02:56 +08:00
33 lines
825 B
C++
33 lines
825 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
// Model: pelican.qm
|
|
// File: ././pelican.h
|
|
//
|
|
// This file has been generated automatically by QP Modeler (QM).
|
|
// DO NOT EDIT THIS FILE MANUALLY.
|
|
//
|
|
// Please visit www.state-machine.com/qm for more information.
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#ifndef pelican_h
|
|
#define pelican_h
|
|
|
|
namespace PELICAN {
|
|
|
|
enum PelicanSignals {
|
|
PEDS_WAITING_SIG = QP::Q_USER_SIG,
|
|
TERMINATE_SIG,
|
|
MAX_PUB_SIG, // the last published signal
|
|
|
|
ON_SIG,
|
|
OFF_SIG,
|
|
TIMEOUT_SIG,
|
|
|
|
MAX_SIG // keep always last
|
|
};
|
|
|
|
// active objects ..................................................
|
|
extern QP::QActive * const AO_Pelican; // opaque pointer to Pelican AO
|
|
|
|
} // namespace PELICAN
|
|
|
|
#endif // pelican_h
|