Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/windowing/StarLayout.hpp
blob: f19989109fe3735185e04273ccd812e4b819fba3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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