git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@204 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-07 14:20:45 +00:00
parent 8c030ba778
commit 7dda33ee1c
22 changed files with 204 additions and 39 deletions

View File

@@ -4,9 +4,11 @@
#include <MwOO/Base.h>
class MwOOFrameWidget : public MwOOWidget {
namespace MwOO {
class Frame : public MwOO::Base {
public:
MwOOFrameWidget(const char* name, MwOOWidget* parent, int x, int y, int w, int h);
Frame(const char* widget_name, MwOO::Base* parent, int x, int y, int w, int h);
};
} // namespace MwOO
#endif