#include "model/recipe/recipe.h" Recipe::Recipe(){ this->name = "NULL"; this->ingredients = vector(); this->instructions = vector(); } Recipe::Recipe(string name, vector ingredients, vector instructions){ this->name = name; this->ingredients = ingredients; this->instructions = instructions; } string Recipe::getName(){ return this->name; } vector Recipe::getIngredients(){ return this->ingredients; } vector Recipe::getInstructions(){ return this->instructions; }