- Implemented ::execute to run a command, feed it input, read it's output and
  return the exit status.
This commit is contained in:
Paul Beckingham 2014-05-14 00:03:02 -04:00
parent 68436d0d50
commit d30fb54a62
2 changed files with 41 additions and 1 deletions

View file

@ -45,6 +45,9 @@ public:
void onAdd (Task&);
void onModify (const Task&, Task&);
private:
int execute (const std::string&, const std::string&, std::string&);
private:
std::vector <std::string> _scripts;
};