blob: 8f627910fb8a17ba51c6b9d5a3e145fefb2ec41e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef RESPONSIVE_PANED_HPP
#define RESPONSIVE_PANED_HPP
#include <gtkmm/paned.h>
namespace Gtk
{
class ResponsivePaned : public Paned
{
public:
explicit ResponsivePaned(Orientation orientation = ORIENTATION_HORIZONTAL);
virtual ~ResponsivePaned() {}
};
}
#endif // RESPONSIVE_PANED_HPP
|