osb/source/windowing/StarLayout.hpp
2023-06-20 14:33:09 +10:00

17 lines
249 B
C++

#ifndef STAR_LAYOUT_HPP
#define STAR_LAYOUT_HPP
#include "StarWidget.hpp"
namespace Star {
// VERY simple base class for a layout container object.
class Layout : public Widget {
public:
Layout();
virtual void update() override;
};
}
#endif