mirror of
https://github.com/nasa/trick.git
synced 2025-01-02 03:16:43 +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
566 B
C++
25 lines
566 B
C++
|
|
/*
|
|
PURPOSE: (Monte carlo structures)
|
|
REFERENCE: (Trick Users Guide)
|
|
ASSUMPTIONS AND LIMITATIONS: (None)
|
|
PROGRAMMERS: ((Keith Vetter) (LinCom) (7/2003))
|
|
*/
|
|
|
|
#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
|