diff options
Diffstat (limited to 'src/ruleLayout.h')
-rw-r--r-- | src/ruleLayout.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ruleLayout.h b/src/ruleLayout.h new file mode 100644 index 0000000..45aafc1 --- /dev/null +++ b/src/ruleLayout.h @@ -0,0 +1,16 @@ +#ifndef RULELAYOUT_H +#define RULELAYOUT_H + +#include <QHBoxLayout> + +#include "rule.h" + +// TODO consider getting rid of this class (unneccesary) +class RuleLayout : QHBoxLayout { + public: + Rule rule; + + RuleLayout(const Rule &r); +}; + +#endif |