mirror of
https://github.com/nasa/trick.git
synced 2025-01-25 05:46:58 +00:00
29 lines
655 B
C++
29 lines
655 B
C++
|
|
||
|
/*
|
||
|
PURPOSE: (Monte carlo structures)
|
||
|
REFERENCE: (Trick Users Guide)
|
||
|
ASSUMPTIONS AND LIMITATIONS: (None)
|
||
|
PROGRAMMERS: ((Keith Vetter) (LinCom) (7/2003))
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* $Id: RemoteShell.hh 646 2010-04-28 21:50:31Z lin $
|
||
|
*/
|
||
|
|
||
|
#ifndef _REMOTESHELL_HH_
|
||
|
#define _REMOTESHELL_HH_
|
||
|
|
||
|
namespace Trick {
|
||
|
|
||
|
enum RemoteShell {
|
||
|
TRICK_SSH, /* Secure encrypted shell(Default) */
|
||
|
TRICK_RSH, /* Insecure rlogin shell */
|
||
|
TRICK_USER_REMOTE_SH /* user defined remote shell */
|
||
|
} ;
|
||
|
|
||
|
} ;
|
||
|
|
||
|
//void write_monte_output(MonteWork *MW);
|
||
|
|
||
|
#endif
|