trick/test/SIM_test_dp/S_define
Alex Lin 0c84b8ad08 plit test sims and fun sims into separate directories
Moved SIM_events, test_dp, test_dr, and abstract.

refs #191
2016-02-23 13:48:59 -06:00

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() {
}