mirror of
https://github.com/nasa/trick.git
synced 2025-01-09 14:32:53 +00:00
47 lines
960 B
Plaintext
47 lines
960 B
Plaintext
|
/************************TRICK HEADER*************************
|
||
|
PURPOSE:
|
||
|
(This comment lists out the other object files that are not included from c++ headers)
|
||
|
LIBRARY DEPENDENCIES:
|
||
|
(
|
||
|
(test/dp/src/dp.c)
|
||
|
)
|
||
|
*************************************************************/
|
||
|
|
||
|
#include "sim_objects/default_trick_sys.sm"
|
||
|
|
||
|
|
||
|
##include "test/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() {
|
||
|
|
||
|
}
|