prepared to implement STD{IN,OUT,ERR} piping for subprocess execution. Hoping to maintain compatibility with curses dialogs.
10 lines
206 B
C++
10 lines
206 B
C++
#include "Sproc.h"
|
|
|
|
|
|
|
|
int Sproc::execute( std::string input )
|
|
{
|
|
std::cout << std::endl << "made it to subprocess execution but not implemented yet" << std::endl << std::endl;
|
|
return EXIT_SUCCESS;
|
|
|
|
} |