#include "Archimedes.h" #include namespace Archimedes { class WindowGLFW { public: WindowGLFW(); ~WindowGLFW(); bool shouldClose(); void doFrame(); private: GLFWwindow* w; }; typedef WindowGLFW WindowImpl; }