mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
90fd0ff9f8
Moved SIM_test_ip and a couple of other sims that depend on the same model set to a new test directory. I'm doing a couple of sims at a time. refs #191
38 lines
879 B
Plaintext
38 lines
879 B
Plaintext
/************************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"
|
|
##include "test_ip/include/ClassOfEverything.hh"
|
|
|
|
class testSimObject : public Trick::SimObject {
|
|
|
|
public:
|
|
ClassOfEverything obj ;
|
|
TEST_STRUCT t ;
|
|
my_ns::AA ns_test ;
|
|
|
|
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) ;
|
|
}
|
|
|