mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 14:32:24 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
25 lines
742 B
C++
25 lines
742 B
C++
|
|
#ifndef EXEC_PROTO_HH
|
|
#define EXEC_PROTO_HH
|
|
|
|
#include "sim_services/Executive/include/Executive.hh"
|
|
#include "sim_services/SimObject/include/SimObject.hh"
|
|
|
|
Trick::Executive * exec_get_exec_cpp() ;
|
|
|
|
int exec_add_sim_object( Trick::SimObject * , const char * = NULL ) ;
|
|
int exec_remove_sim_object( Trick::SimObject * ) ;
|
|
|
|
int exec_get_sim_objects(std::vector<Trick::SimObject *>& in_sim_object_vector ) ;
|
|
|
|
Trick::JobData * exec_get_job(const char * job_name, unsigned int j_instance = 1 ) ;
|
|
Trick::JobData * exec_get_curr_job() ;
|
|
|
|
Trick::Threads * exec_get_thread( unsigned int thread_id ) ;
|
|
|
|
int exec_get_all_jobs_vector(std::vector<Trick::JobData *> & in_jobs_vector) ;
|
|
|
|
int exec_register_scheduler( Trick::Scheduler * scheduler ) ;
|
|
|
|
#endif
|