mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
0c84b8ad08
Moved SIM_events, test_dp, test_dr, and abstract. refs #191
27 lines
477 B
Plaintext
27 lines
477 B
Plaintext
/**************************TRICK HEADER***********************
|
|
PURPOSE: ( S_define )
|
|
LIBRARY DEPENDENCIES:
|
|
(
|
|
(dr/src/DR.cpp)
|
|
(dr/src/DR_default_data.cpp)
|
|
)
|
|
*************************************************************/
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
##include "dr/include/DR.hh"
|
|
|
|
class testSimObject : public Trick::SimObject {
|
|
public:
|
|
DRTypes drt;
|
|
|
|
testSimObject() {
|
|
("default_data") drt.init();
|
|
}
|
|
};
|
|
|
|
// Instantiations
|
|
testSimObject drx;
|
|
|
|
|