another patch by apathy to remove shared_ptr

This commit is contained in:
DarthArgus
2016-07-25 05:25:38 +00:00
parent d9b4adb7e8
commit 80b0db5327
@@ -10,8 +10,9 @@
#define INCLUDED_CraftingData_H
#include "sharedFoundation/NetworkId.h"
#include "boost/smart_ptr.hpp"
#include "StringId.h"
#include <memory>
#include <vector>
class CreatureObject;
@@ -210,7 +211,7 @@ namespace Crafting
//------------------------------------------------------------------------------
typedef boost::shared_ptr<SimpleIngredient> SimpleIngredientPtr;
typedef std::shared_ptr<SimpleIngredient> SimpleIngredientPtr;
typedef std::vector<SimpleIngredientPtr> Ingredients;
//------------------------------------------------------------------------------