#ifndef _IRUNNABLE_h #define _IRUNNABLE_h /// /// Something that does on-going processing while the system is active /// class IRunnable { public: /// /// Do processing /// virtual void tick() = 0; }; #endif