mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 13:17:55 +00:00
24cfabbdef
Added headers with previous path for backwards compatability. Changed name of Exec_exception to ExecutiveException. refs #63
26 lines
474 B
C++
26 lines
474 B
C++
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#include "trick/Executive.hh"
|
|
|
|
int Trick::Executive::stop() {
|
|
|
|
/** @par Detailed Design */
|
|
/** @li Set exec_command to ExitCmd. Requirement [@ref r_exec_mode_4] */
|
|
exec_command = ExitCmd ;
|
|
|
|
return(0) ;
|
|
|
|
}
|
|
|
|
int Trick::Executive::stop(double in_time) {
|
|
|
|
/** @par Detailed Design */
|
|
/** @li Set exec_command to ExitCmd. Requirement [@ref r_exec_mode_4] */
|
|
set_terminate_time(in_time) ;
|
|
|
|
return(0) ;
|
|
|
|
}
|