From afcae23cbf63b31a7ce111ffcd76c027b332bdf9 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 9 Mar 2024 16:53:38 -0500 Subject: Break entry/group/rule into sub-classes --- src/ruleLayout.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/ruleLayout.h (limited to 'src/ruleLayout.h') 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 + +#include "rule.h" + +// TODO consider getting rid of this class (unneccesary) +class RuleLayout : QHBoxLayout { + public: + Rule rule; + + RuleLayout(const Rule &r); +}; + +#endif -- cgit