mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
24cfabbdef
Added headers with previous path for backwards compatability. Changed name of Exec_exception to ExecutiveException. refs #63
14 lines
335 B
C++
14 lines
335 B
C++
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#include "trick/Executive.hh"
|
|
#include "trick/ExecutiveException.hh"
|
|
#include "trick/exec_proto.h"
|
|
|
|
int Trick::Executive::exec_terminate(const char *file_name, const char *error) {
|
|
exec_command = ExitCmd ;
|
|
throw Trick::ExecutiveException(-1 , file_name , 0 , error) ;
|
|
return -1 ;
|
|
}
|