rex/src/sproc/Sproc.cpp

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;
}