mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
22 lines
279 B
Plaintext
22 lines
279 B
Plaintext
|
#include "sim_objects/default_trick_sys.sm"
|
||
|
##include "Foo.hh"
|
||
|
##include "Bar.hh"
|
||
|
##include "Baz.hh"
|
||
|
|
||
|
class Sandbox : public Trick::SimObject {
|
||
|
|
||
|
public:
|
||
|
|
||
|
Foo foo;
|
||
|
Bar bar;
|
||
|
Baz baz;
|
||
|
|
||
|
Sandbox() {
|
||
|
(1, "scheduled") foo.foo();
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
Sandbox sandbox;
|