summaryrefslogtreecommitdiffstats
path: root/krecipes/src/datablocks/weight.h
blob: eefe89626614e1191331005c4c68636e2bbfb533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/***************************************************************************
*   Copyright (C) 2006 Jason Kivlighn (jkivlighn@gmail.com)               *
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
***************************************************************************/

#ifndef WEIGHT_H
#define WEIGHT_H

#include <qstring.h>
#include <qvaluelist.h>

#include "datablocks/elementlist.h"

class Weight
{
public:
	Weight();

	int id;
	int ingredientID;
	int perAmountUnitID;
	QString perAmountUnit;
	double perAmount;
	int weightUnitID;
	double weight;
	QString weightUnit;
	int prepMethodID;
	QString prepMethod;
};

class WeightList : public QValueList<Weight>
{
public:
	WeightList() : QValueList<Weight>(){}
};

#endif