2015-02-26 15:02:31 +00:00
|
|
|
/**************************TRICK HEADER***********************
|
|
|
|
PURPOSE: ( S_define )
|
|
|
|
LIBRARY DEPENDENCIES:
|
|
|
|
(
|
2016-02-23 19:48:59 +00:00
|
|
|
(dr/src/DR.cpp)
|
|
|
|
(dr/src/DR_default_data.cpp)
|
2015-02-26 15:02:31 +00:00
|
|
|
)
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
|
2016-02-23 19:48:59 +00:00
|
|
|
##include "dr/include/DR.hh"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
class testSimObject : public Trick::SimObject {
|
|
|
|
public:
|
|
|
|
DRTypes drt;
|
|
|
|
|
|
|
|
testSimObject() {
|
|
|
|
("default_data") drt.init();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Instantiations
|
|
|
|
testSimObject drx;
|
|
|
|
|
|
|
|
|