diff options
author | Louie S <louie@example.com> | 2024-07-23 20:37:48 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-07-23 20:37:48 -0400 |
commit | c34930425fadfc4083067b9306159cd8e8ecf6c6 (patch) | |
tree | d9c09709f1b9cf7e9bcf098d48c7036044098a7d /src/group.h | |
parent | f820f439910ef0243e6b9aded293190341b058ac (diff) |
Rearrange source file locations
Diffstat (limited to 'src/group.h')
-rw-r--r-- | src/group.h | 25 |
1 files changed, 0 insertions, 25 deletions
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 <QString> - -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<Group> groups; -}; - -#endif |