diff options
author | Your Name <you@example.com> | 2022-01-16 21:32:01 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2022-01-16 21:32:01 -0500 |
commit | d0e356d09e30a11c1e072415a5088f829d5c0a04 (patch) | |
tree | 1e64d37b9b424cd74c30ad4c8225828c7a76874e /src/feature.h | |
parent | 3f78a7e1647ba94129236bd2bf4fc855c109628a (diff) | |
download | dmtool-d0e356d09e30a11c1e072415a5088f829d5c0a04.tar.gz dmtool-d0e356d09e30a11c1e072415a5088f829d5c0a04.tar.bz2 dmtool-d0e356d09e30a11c1e072415a5088f829d5c0a04.zip |
Worked on features
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/feature.h b/src/feature.h deleted file mode 100644 index e3c8bdf..0000000 --- a/src/feature.h +++ /dev/null @@ -1,14 +0,0 @@ -#pragma once -#include <nlohmann/json.hpp> -#include "entry.h" -#include <memory> - -namespace entry { - class Feature : public Entry { - public: - Feature() {} - Feature(const std::string& name, const std::string& type, const std::string& text) : Entry("feature", name, type, text) {} - static std::shared_ptr<Feature> create(const nlohmann::json& data); - virtual ~Feature() {} - }; -} |