2016-02-23 16:23:55 +00:00
|
|
|
/************************TRICK HEADER*************************
|
|
|
|
PURPOSE:
|
|
|
|
(This comment lists out the other object files that are not included from c++ headers)
|
|
|
|
LIBRARY DEPENDENCIES:
|
|
|
|
(
|
|
|
|
)
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
2016-02-25 20:40:55 +00:00
|
|
|
##include "ClassOfEverything.hh"
|
2016-02-23 16:23:55 +00:00
|
|
|
|
|
|
|
class testSimObject : public Trick::SimObject {
|
|
|
|
|
|
|
|
public:
|
|
|
|
ClassOfEverything obj ;
|
|
|
|
testSimObject() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
testSimObject (const testSimObject &);
|
|
|
|
testSimObject & operator= (const testSimObject &);
|
|
|
|
|
|
|
|
} ;
|
|
|
|
|
|
|
|
// Instantiations
|
|
|
|
testSimObject test_so ;
|
|
|
|
|
|
|
|
// Connect objects
|
|
|
|
void create_connections() {
|
|
|
|
|
|
|
|
// Set the default termination time
|
|
|
|
trick_sys.sched.set_terminate_time(1.0) ;
|
|
|
|
trick_sys.sched.set_freeze_frame(0.10) ;
|
|
|
|
}
|
|
|
|
|