aboutsummaryrefslogtreecommitdiff
path: root/ui.qt/source/keyword.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui.qt/source/keyword.hpp')
-rw-r--r--ui.qt/source/keyword.hpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/ui.qt/source/keyword.hpp b/ui.qt/source/keyword.hpp
deleted file mode 100644
index bc50473..0000000
--- a/ui.qt/source/keyword.hpp
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include "fwd.hpp"
-
-#include <QString>
-#include <vector>
-
-class Keyword
-{
-private:
- QString name;
- std::vector<KnowledgeId> associations;
-
-public:
- Keyword(const QString& name);
- ~Keyword();
-
- Keyword(const Keyword&) = default;
- Keyword& operator=(const Keyword&) = default;
- Keyword(Keyword&&) = default;
- Keyword& operator=(Keyword&&) = default;
-};
-
-class KeywordDatabase
-{
-};