#ifndef BOXABLE_HPP #define BOXABLE_HPP #include class Boxable { public: virtual void addToBox(GtkWidget* box); protected: Boxable() {}; GtkWidget* widget; }; #endif