osb/source/windowing/StarLayout.hpp

17 lines
249 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#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