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 481b5bb..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 mName;
- std::vector<KnowledgeId> mAssociations;
-
-public:
- Keyword(const QString& name);
- ~Keyword();
-
- Keyword(const Keyword&) = default;
- Keyword& operator=(const Keyword&) = default;
- Keyword(Keyword&&) = default;
- Keyword& operator=(Keyword&&) = default;
-};
-
-class KeywordDatabase
-{
-};