prt-get/src/process.h
Johannes Winkelmann d8c1e157ab introduce svn-typical layout
git-svn-id: https://crux.nu/svn/tools/prt-get/trunk@9 0b5ae1c7-2405-0410-a7fc-ba219f786e1e
2005-11-09 21:43:05 +00:00

47 lines
1.2 KiB
C++

////////////////////////////////////////////////////////////////////////
// FILE: process.h
// AUTHORS: Johannes Winkelmann, jw@tks6.net
// Output redirection by Logan Ingalls, log@plutor.org
// COPYRIGHT: (c) 2002 by Johannes Winkelmann
// ---------------------------------------------------------------------
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
////////////////////////////////////////////////////////////////////////
#ifndef _PROCESS_H_
#define _PROCESS_H_
#include <string>
using namespace std;
/*!
\class Process
\brief Process execution class
A class to execute processes
*/
class Process
{
public:
Process( const string& app, const string& arguments, int fdlog=0 );
int execute();
int executeShell();
private:
int exec(const int argc, char** argv);
int execLog(const int argc, char** argv);
int execShell(const char* shell);
int execShellLog(const char* shell);
string m_app;
string m_arguments;
int m_fdlog;
};
#endif /* _PROCESS_H_ */