RecipeDB/model/recipe/ingredients/unitofmeasure.h

33 lines
851 B
C
Raw Normal View History

#ifndef UNITOFMEASURE_H
#define UNITOFMEASURE_H
#include <string>
using namespace std;
/**
* @brief The UnitOfMeasure class represents a way to measure an ingredient. It contains a name, an abbreviation, plural name, and some information on conversion.
*/
class UnitOfMeasure
{
public:
//Full constructor.
UnitOfMeasure(string name, string plural, string abbreviation);
//Attempt to guess unit from just a string.
UnitOfMeasure(string name);
//Constructor with default values.
UnitOfMeasure();
//Getters
string getName() const;
string getNamePlural() const;
string getAbbreviation() const;
private:
2018-02-12 15:27:24 +00:00
string name; //The name of the unit of measure.
string plural; //The plural name.
string abbreviation; //A short version of the unit.
};
#endif // UNITOFMEASURE_H