blob: 40d63bef5261677b94d9f292005ea36eecd73eb3 (
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
42
43
44
45
46
47
48
49
50
51
52
53
|
/***************************************************************************
* Copyright (C) 2003 by Unai Garro *
* [email protected] *
* *
* 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. *
***************************************************************************/
#include "datablocks/ingredientpropertylist.h"
IngredientPropertyList::IngredientPropertyList()
{}
IngredientPropertyList::~IngredientPropertyList()
{}
IngredientPropertyList::const_iterator IngredientPropertyList::find( int id )
{
IngredientProperty ip;
ip.id = id;
return TQValueList<IngredientProperty>::find( ip );
}
int IngredientPropertyList::findByName( const TQString &name )
{
IngredientPropertyList::const_iterator prop_it;
for ( prop_it = begin(); prop_it != end(); ++prop_it ) {
if ( (*prop_it).name == name )
return (*prop_it).id;
}
return -1;
}
void IngredientPropertyList::divide( double units_of_yield_type )
{
IngredientPropertyList::iterator prop_it;
for ( prop_it = begin(); prop_it != end(); ++prop_it )
(*prop_it).amount /= units_of_yield_type;
}
void IngredientPropertyList::filter( int ingredientID, IngredientPropertyList *filteredList )
{
filteredList->clear();
IngredientPropertyList::const_iterator prop_it;
for ( prop_it = begin(); prop_it != end(); ++prop_it ) {
if ( (*prop_it).ingredientID == ingredientID )
filteredList->append( *prop_it );
}
}
|