From c34930425fadfc4083067b9306159cd8e8ecf6c6 Mon Sep 17 00:00:00 2001 From: Louie S Date: Tue, 23 Jul 2024 20:37:48 -0400 Subject: Rearrange source file locations --- src/group.h | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/group.h (limited to 'src/group.h') diff --git a/src/group.h b/src/group.h deleted file mode 100644 index 9c7bfa4..0000000 --- a/src/group.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef GROUP_H -#define GROUP_H - -#include - -struct Group { - enum Column { left, right }; - int id; - QString name; - Column column; - QString link; - bool hidden; - - Group( - int id, - QString name, - Column column = left, - QString link = "", - bool hidden = false - ); - - static QList groups; -}; - -#endif -- cgit