Implement RPC commands on the Android side

This commit is contained in:
Simon Fels 2016-06-28 19:46:35 +02:00
commit d7c73bf766
7 changed files with 94 additions and 5 deletions

View file

@ -114,6 +114,7 @@ public:
*/
wait::Result wait_for(const wait::Flags& flags);
#ifndef ANDROID
/**
* @brief Access this process's stderr.
*/
@ -128,6 +129,7 @@ public:
* @brief Access this process's stdout.
*/
std::istream& cout();
#endif
private:
friend ChildProcess fork(const std::function<posix::exit::Status()>&, const StandardStream&);