summaryrefslogtreecommitdiff
path: root/src/groupLayout.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-07-23 20:37:48 -0400
committerLouie S <louie@example.com>2024-07-23 20:37:48 -0400
commitc34930425fadfc4083067b9306159cd8e8ecf6c6 (patch)
treed9c09709f1b9cf7e9bcf098d48c7036044098a7d /src/groupLayout.h
parentf820f439910ef0243e6b9aded293190341b058ac (diff)
Rearrange source file locations
Diffstat (limited to 'src/groupLayout.h')
-rw-r--r--src/groupLayout.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/groupLayout.h b/src/groupLayout.h
deleted file mode 100644
index cfd33cf..0000000
--- a/src/groupLayout.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef GROUPLAYOUT_H
-#define GROUPLAYOUT_H
-
-#include <QVBoxLayout>
-
-#include "group.h"
-
-class GroupLayout : public QVBoxLayout {
- Q_OBJECT
-
- public:
- Group group;
-
- GroupLayout(const Group &g);
-
- private slots:
- void showContextMenu();
- void addEntry();
- void editGroup();
- void removeGroup();
-};
-
-#endif