trick/trick_models/InputProcessSimObject/include/InputProcessSimObject.hh
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
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.
2015-03-23 16:03:14 -05:00

40 lines
804 B
C++

/*
PURPOSE:
( InputProcessor "Sim object" )
PROGRAMMERS:
(((Alex Lin) (NASA) (2009)))
LIBRARY_DEPENDENCIES:
((../src/InputProcessSimObject.cpp))
*/
#ifndef INPUTPROCESSSIMOBJECT_HH
#define INPUTPROCESSSIMOBJECT_HH
#include <vector>
#include <string>
#include <map>
#include "sim_services/SimObject/include/SimObject.hh"
namespace Trick {
class InputProcessSimObject : public SimObject {
public:
std::string python_call_function ;
int return_value ;
InputProcessSimObject( std::string ) ;
/* call_function hand coded for jobs to be called by scheduler */
virtual int call_function( Trick::JobData * curr_job ) ;
virtual double call_function_double( Trick::JobData * curr_job ) ;
} ;
}
#endif