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