2018-02-02 12:27:57 +00:00
|
|
|
#ifndef RECIPEINGREDIENT_H
|
|
|
|
#define RECIPEINGREDIENT_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2018-02-12 14:15:04 +00:00
|
|
|
#include "model/recipe/ingredients/ingredient.h"
|
2018-02-12 18:20:38 +00:00
|
|
|
#include "model/recipe/ingredients/unitofmeasure.h"
|
2018-02-02 12:27:57 +00:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2018-02-12 15:27:24 +00:00
|
|
|
/**
|
|
|
|
* @brief The RecipeIngredient class represents both an ingredient and a unit of measure, to be used in a recipe object.
|
|
|
|
*/
|
|
|
|
|
2018-02-02 12:27:57 +00:00
|
|
|
class RecipeIngredient : public Ingredient
|
|
|
|
{
|
|
|
|
public:
|
2018-02-12 18:48:22 +00:00
|
|
|
//Constructor for new RecipeIngredient without starting child ingredient.
|
|
|
|
RecipeIngredient(int id, string name, string foodGroup, float quantity, UnitOfMeasure unit);
|
|
|
|
//Constructor using data from a child ingredient.
|
|
|
|
RecipeIngredient(Ingredient i, float quantity, UnitOfMeasure unit);
|
2018-02-02 12:27:57 +00:00
|
|
|
|
2018-02-12 18:48:22 +00:00
|
|
|
//Getters
|
|
|
|
float getQuantity();
|
2018-02-12 18:20:38 +00:00
|
|
|
UnitOfMeasure getUnit();
|
2018-02-02 12:27:57 +00:00
|
|
|
string getComment();
|
|
|
|
|
2018-02-12 18:48:22 +00:00
|
|
|
//Setters
|
|
|
|
void setQuantity(float newQuantity);
|
2018-02-12 18:20:38 +00:00
|
|
|
void setUnit(UnitOfMeasure newUnit);
|
2018-02-02 12:27:57 +00:00
|
|
|
void setComment(string newComment);
|
|
|
|
private:
|
2018-02-12 18:48:22 +00:00
|
|
|
float quantity;
|
2018-02-12 18:20:38 +00:00
|
|
|
UnitOfMeasure unit;
|
2018-02-02 12:27:57 +00:00
|
|
|
string comment;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RECIPEINGREDIENT_H
|