mirror of
https://github.com/nasa/trick.git
synced 2024-12-26 16:21:07 +00:00
27 lines
489 B
Plaintext
27 lines
489 B
Plaintext
|
/**************************TRICK HEADER***********************
|
||
|
PURPOSE: ( S_define )
|
||
|
LIBRARY DEPENDENCIES:
|
||
|
(
|
||
|
(test/dr/src/DR.cpp)
|
||
|
(test/dr/src/DR_default_data.cpp)
|
||
|
)
|
||
|
*************************************************************/
|
||
|
|
||
|
#include "sim_objects/default_trick_sys.sm"
|
||
|
|
||
|
##include "test/dr/include/DR.hh"
|
||
|
|
||
|
class testSimObject : public Trick::SimObject {
|
||
|
public:
|
||
|
DRTypes drt;
|
||
|
|
||
|
testSimObject() {
|
||
|
("default_data") drt.init();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
// Instantiations
|
||
|
testSimObject drx;
|
||
|
|
||
|
|