diff options
author | Sebastian Geerken <devnull@localhost> | 2015-01-08 14:51:23 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-01-08 14:51:23 +0100 |
commit | 3fa61740d50d8a8fd6c61eb86e1f7a45a3762570 (patch) | |
tree | b6d857642d861fc594292ec69260bfc3cc617be0 /dw/regardingborder.hh | |
parent | e05ebd46d570cd64c116ed4bdde669ea0962e99b (diff) | |
parent | 428094b178eb03d8e500c81837caac402e4b138c (diff) |
Merge with main repo.
Diffstat (limited to 'dw/regardingborder.hh')
-rw-r--r-- | dw/regardingborder.hh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dw/regardingborder.hh b/dw/regardingborder.hh new file mode 100644 index 00000000..1cb6c25f --- /dev/null +++ b/dw/regardingborder.hh @@ -0,0 +1,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__ |