Vuo  0.3
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
CompileAndRunInNewProcess.cc

Example: Compile a composition and run it in a new process.

#include <Vuo/Vuo.h>
int main(void)
{
// Compile, link, and run the composition in a new process
runner->start();
// Stop it after 5 seconds
sleep(5);
runner->stop();
return 0;
}