#pragma once #include "fwd.hpp" #include #include class Keyword { private: QString mName; std::vector 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 { };