123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef HEADER_FLEXLAY_PANEL_HPP
- #define HEADER_FLEXLAY_PANEL_HPP
- #include <ClanLib/GUI/component.h>
- #include <memory>
- class PanelImpl;
- class Panel : public CL_Component
- {
- public:
- Panel(const CL_Rect& rect, CL_Component* parent);
- private:
- std::shared_ptr<PanelImpl> impl;
- };
- #endif
|