]> git.tdb.fi Git - libs/gltk.git/blob - source/row.h
678a3853cc2023b399286b628d3330ea6f0fce21
[libs/gltk.git] / source / row.h
1 #ifndef MSP_GLTK_ROW_H_
2 #define MSP_GLTK_ROW_H_
3
4 #include "lineararrangement.h"
5 #include "mspgltk_api.h"
6
7 namespace Msp {
8 namespace GLtk {
9
10 class MSPGLTK_API Row: public LinearArrangement
11 {
12 public:
13         Row(Layout &);
14
15 private:
16         void finish_widget(Widget &) override;
17 };
18
19 } // namespace GLtk
20 } // namespace Msp
21
22 #endif