removed output checks from data model and from implementation.
prepared to implement STD{IN,OUT,ERR} piping for subprocess execution. Hoping to maintain compatibility with curses dialogs.
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
#include "Sproc.h"
|
||||
|
||||
int Sproc::execute(ExecutionInput input, Execution &output)
|
||||
|
||||
|
||||
int Sproc::execute( std::string input )
|
||||
{
|
||||
output.STDOUT = "it worked";
|
||||
std::cout << std::endl << "made it to subprocess execution but not implemented yet" << std::endl << std::endl;
|
||||
return EXIT_SUCCESS;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user