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