blob: 1cb6c25fc3f4172a567fb86b083c0fd4d9ebc12d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __DW_REGARDINGBORDER_HH__
#define __DW_REGARDINGBORDER_HH__
#include "oofawarewidget.hh"
namespace dw {
/**
* \brief Base class (rather a tag interface) for those widgets
* regarding borders defined by floats, and so allocated on the
* full width.
*/
class RegardingBorder: public oof::OOFAwareWidget
{
public:
static int CLASS_ID;
RegardingBorder ();
~RegardingBorder ();
};
} // namespace dw
#endif // __DW_REGARDINGBORDER_HH__
|