Files
flenser/dw/regardingborder.hh
ADAM David Alan Martin 8549ca489f
Some checks failed
CI / ubuntu-latest-html-tests (push) Has been cancelled
CI / ubuntu-latest-no-tls (push) Has been cancelled
CI / ubuntu-latest-mbedtls2 (push) Has been cancelled
CI / ubuntu-latest-openssl-3 (push) Has been cancelled
CI / ubuntu-latest-with-old-std (push) Has been cancelled
CI / ubuntu-20-04-openssl-1-1 (push) Has been cancelled
CI / alpine-mbedtls-3_6_0 (push) Has been cancelled
CI / macOS-13-openssl-1-1 (push) Has been cancelled
CI / macOS-13-openssl-3 (push) Has been cancelled
CI / freebsd-14-openssl-3 (push) Has been cancelled
CI / windows-mbedtls (push) Has been cancelled
Poor man's RTTI is mostly gone.
I'm keeping the type-index to name mapping, for now.
2025-08-09 06:31:08 -04:00

23 lines
438 B
C++

#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:
RegardingBorder ();
~RegardingBorder ();
};
} // namespace dw
#endif // __DW_REGARDINGBORDER_HH__