#ifndef PSEUDOCONTEXT #define PSEUDOCONTEXT #include class PseudoContext { protected: //viewport int width, height; int top, left; public: PseudoContext(int left, int top, int width, int height); virtual void draw() = 0; std::vector getBounds(); }; #endif