mirror of
https://github.com/nasa/trick.git
synced 2024-12-28 00:48:52 +00:00
58 lines
1.9 KiB
C
58 lines
1.9 KiB
C
/************************TRICK HEADER*************************
|
|
* PURPOSE:
|
|
(This comment lists out the other object files that are not included from c++ headers)
|
|
LIBRARY DEPENDENCIES:
|
|
(
|
|
(test/sched/src/sched_amf.o)
|
|
(test/sched/src/sched_async.o)
|
|
(test/sched/src/sched_deriv.o)
|
|
(test/sched/src/sched_dyn_event.o)
|
|
(test/sched/src/sched_effector.o)
|
|
(test/sched/src/sched_effector_emitter.o)
|
|
(test/sched/src/sched_effector_receiver.o)
|
|
(test/sched/src/sched_environment.o)
|
|
(test/sched/src/sched_init.o)
|
|
(test/sched/src/sched_integ.o)
|
|
(test/sched/src/sched_logging.o)
|
|
(test/sched/src/sched_scheduled.o)
|
|
(test/sched/src/sched_sensor.o)
|
|
(test/sched/src/sched_sensor_emitter.o)
|
|
(test/sched/src/sched_sensor_receiver.o)
|
|
(test/sched/src/sched_sensor_reflector.o)
|
|
(test/sched/src/sched_default_data.o)
|
|
)
|
|
*************************************************************/
|
|
|
|
#ifndef _sched_proto_h_
|
|
#define _sched_proto_h_
|
|
#include "sched.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int sched_init(SCHEDULE*) ;
|
|
int sched_integ(SCHEDULE*) ;
|
|
int sched_deriv(SCHEDULE*) ;
|
|
double sched_dyn_event(SCHEDULE*) ;
|
|
int sched_scheduled(SCHEDULE*) ;
|
|
int sched_environment(SCHEDULE*) ;
|
|
int sched_sensor(SCHEDULE*) ;
|
|
int sched_sensor_reflector(SCHEDULE*) ;
|
|
int sched_sensor_receiver(SCHEDULE*) ;
|
|
int sched_sensor_emitter(SCHEDULE*) ;
|
|
int sched_effector_receiver(SCHEDULE*) ;
|
|
int sched_effector_emitter(SCHEDULE*) ;
|
|
int sched_effector(SCHEDULE*) ;
|
|
int sched_logging(SCHEDULE*) ;
|
|
int sched_amf(SCHEDULE*) ;
|
|
int sched_async(SCHEDULE*) ;
|
|
int sched_default_data(SCHEDULE*) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|