/* $Id$ */ #ifndef __MWOO_WIDGET_SUBMENU_H__ #define __MWOO_WIDGET_SUBMENU_H__ #include namespace MwOO { class SubMenu : public MwOO::Base { public: SubMenu(const char* widget_name, MwOO::Base* parent, int x, int y, int w, int h); void Appear(MwMenu menu, MwPoint* point); }; } // namespace MwOO #endif