1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
/*
* Modification History
*
* 2003-January-10 Jason Rohrer
* Created.
*/
#include "minorGems/common.h"
#ifndef LAUNCHER_INCLUDED
#define LAUNCHER_INCLUDED
/**
* Interface for launching processes.
*
* @author Jason Rohrer
*/
class Launcher {
public:
/**
* Launches a command in a new process.
*
* @param inCommandName the name of the command to launch.
* Must be destroyed by caller if non-const.
* @param inArguments an array of argument strings for the command.
* This array must be terminated by a NULL pointer.
* Note that by convention, the first argument should be the
* command name.
* Must be destroyed by caller.
*/
static void launchCommand( char *inCommandName,
char **inArguments );
};
#endif
|