trick/trick_source/sim_services/include/RemoteShell.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

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