#ifndef RENDERCONTEXT_H #define RENDERCONTEXT_H /*------------------------ Render context manages a rotor graph as a web service, and renders out linear movies TJR Jan 2014 -------------------------*/ #include "Poco/Task.h" #include "rotor.h" #include "graph.h" namespace Rotor { class Render_context: public Poco::Task { public: Render_context(const std::string& id): Task(id) { graph.init(id); } private: Graph graph; }; }; #endif //RENDERCONTEXT_H