diff options
Diffstat (limited to '')
-rw-r--r-- | src/menu/frame.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/menu/frame.hpp b/src/menu/frame.hpp index 6a2b0892..7b2e315a 100644 --- a/src/menu/frame.hpp +++ b/src/menu/frame.hpp @@ -42,6 +42,16 @@ namespace usdx FrameBackground* background; protected: + class FrameContainerHelper : public ContainerHelper + { + private: + Frame* self; + + public: + FrameContainerHelper(Frame*); + virtual void add(Container*) const; + }; + virtual void draw(void); public: |