aboutsummaryrefslogtreecommitdiff
path: root/src/feature.h
blob: 294cf1d4eb16933a04a6e7a5a45edb4221315245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include <nlohmann/json.hpp>
#include "entry.h"
#include <memory>

namespace entry {
    class Feature : public Entry {
        public:
            static std::shared_ptr<Feature> create(const nlohmann::json& data);
            virtual ~Feature() {}
    };
}