mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
8d314fa1b1
Closes #1144
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;
|