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