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/entryLayout.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/entryLayout.h (limited to 'src/entryLayout.h') diff --git a/src/entryLayout.h b/src/entryLayout.h new file mode 100644 index 0000000..fb4902b --- /dev/null +++ b/src/entryLayout.h @@ -0,0 +1,20 @@ +#ifndef ENTRYLAYOUT_H +#define ENTRYLAYOUT_H + +#include +#include +#include +#include + +#include "entry.h" + +class EntryLayout : public QHBoxLayout { + Q_OBJECT + + public: + Entry entry; + + EntryLayout(const Entry &e); +}; + +#endif -- cgit