aboutsummaryrefslogtreecommitdiff
path: root/src/item.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/item.h')
-rw-r--r--src/item.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/item.h b/src/item.h
index 096513e..b0b06af 100644
--- a/src/item.h
+++ b/src/item.h
@@ -7,15 +7,17 @@ namespace entry {
class Item : public Entry {
public:
static std::shared_ptr<Item> create(const nlohmann::json& data);
+ virtual ~Item() {}
protected:
- Item(const nlohmann::json& data) : Entry(data) {};
+ Item(const nlohmann::json& data) : Entry(data) {}
};
class Substantial {
public:
virtual int getCost(void) const = 0;
virtual double getWeight(void) const = 0;
+ virtual ~Substantial() {}
};
std::string genText(const Substantial& s);