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
46 lines
949 B
Plaintext
46 lines
949 B
Plaintext
/************************TRICK HEADER*************************
|
|
PURPOSE:
|
|
(This comment lists out the other object files that are not included from c++ headers)
|
|
LIBRARY DEPENDENCIES:
|
|
(
|
|
(dp/src/dp.c)
|
|
)
|
|
*************************************************************/
|
|
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
##include "dp/include/dp.h"
|
|
|
|
%{
|
|
|
|
// Allow C++ access to the these C functions
|
|
extern "C" {
|
|
extern int dp(DP_TEST*) ;
|
|
}
|
|
|
|
%}
|
|
|
|
//=============================================================================
|
|
// SIM_OBJECT: dp
|
|
// This sim object test data products.
|
|
//=============================================================================
|
|
class testSimObject : public Trick::SimObject {
|
|
|
|
public:
|
|
DP_TEST test ;
|
|
|
|
testSimObject() {
|
|
(0.01, "scheduled") trick_ret = dp( &test ) ;
|
|
}
|
|
|
|
} ;
|
|
|
|
// Instantiations
|
|
testSimObject dpx ;
|
|
|
|
|
|
// Connect objects
|
|
void create_connections() {
|
|
|
|
}
|