qpcpp/doxygen/snippets/qep_qhsm_use.cpp
2019-10-27 12:26:31 -04:00

19 lines
434 B
C++

#include "qep.hpp" // QEP public interface
#include "calc.h" // Calc HSM derived from QHsm
static Calc l_calc; // an instance of Calc HSM
int main() {
l_calc.init(); // trigger initial transition
for (;;) { // event loop
QEvt e;
. . .
// wait for the next event and assign it to the event object e
. . .
l_calc.dispatch(&e); // dispatch the event
}
return 0;
}