3 #ifndef GCP_UTIL_COPROC_H
4 #define GCP_UTIL_COPROC_H
63 CoProc(
char *exe, FILE** stdInFp, FILE** stdOutFp, FILE** stdErrFp);
65 CoProc(
char *exe,
char** argv,
66 FILE** stdInFp, FILE** stdOutFp, FILE** stdErrFp);
68 void fork(
char *exe,
char** argv,
69 FILE** stdInFp, FILE** stdOutFp, FILE** stdErrFp);
84 static std::vector<std::string>
split(std::string command);
103 #endif // End #ifndef GCP_UTIL_COPROC_H
virtual ~CoProc()
Definition: CoProc.cc:143
static std::vector< std::string > split(std::string command)
Definition: CoProc.cc:257
CoProc(std::string exe)
Definition: CoProc.cc:17