mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 06:03:10 +00:00
8d314fa1b1
Closes #1144
18 lines
478 B
C++
18 lines
478 B
C++
// @trick_parse{everything}
|
|
|
|
#include "trick/Event.hh"
|
|
|
|
/**
|
|
* Induce an `%import sim_services` statement in this class's Python module by inheriting from a
|
|
* Trick class. This allows us to test if `sys.path` contains the correct path to `sim_services.py`
|
|
* (and other modules generated during a sim build) for Trickified projects.
|
|
*/
|
|
class Bar : public Trick::Event {
|
|
|
|
int process(long long) {return 0;}
|
|
void add() {}
|
|
void remove() {}
|
|
void restart() {}
|
|
|
|
};
|