#ifndef RECIPE_H #define RECIPE_H #include #include #include #include "model/recipe/ingredient.h" #include "model/recipe/instruction.h" using namespace std; class Recipe { public: Recipe(); Recipe(string name, vector ingredients, vector instructions); string getName(); vector getIngredients(); vector getInstructions(); private: string name; vector tags; vector ingredients; vector instructions; }; #endif // RECIPE_H