Subversion Repositories public iLand

Rev

Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
671 werner 1
/********************************************************************************************
2
**    iLand - an individual based forest landscape and disturbance model
3
**    http://iland.boku.ac.at
4
**    Copyright (C) 2009-  Werner Rammer, Rupert Seidl
5
**
6
**    This program is free software: you can redistribute it and/or modify
7
**    it under the terms of the GNU General Public License as published by
8
**    the Free Software Foundation, either version 3 of the License, or
9
**    (at your option) any later version.
10
**
11
**    This program is distributed in the hope that it will be useful,
12
**    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
**    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
**    GNU General Public License for more details.
15
**
16
**    You should have received a copy of the GNU General Public License
17
**    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
********************************************************************************************/
19
 
140 Werner 20
#ifndef EXPRESSIONWRAPPER_H
21
#define EXPRESSIONWRAPPER_H
293 werner 22
#include <QtCore/QString>
809 werner 23
/** ExpressionWrapper is the base class for exposing C++ elements
24
 *  to the built-in Expression engine. See TreeWrapper for an example.
25
*/
140 Werner 26
class ExpressionWrapper
27
{
28
public:
145 Werner 29
    ExpressionWrapper();
140 Werner 30
    virtual const QStringList getVariablesList();
31
    virtual double value(const int variableIndex);
190 werner 32
    virtual double valueByName(const QString &variableName);
145 Werner 33
    virtual int variableIndex(const QString &variableName);
140 Werner 34
};
35
 
809 werner 36
/** TreeWrapper wraps an individual tree in iLand.
37
 *
38
 **/
140 Werner 39
class Tree;
40
class TreeWrapper: public ExpressionWrapper
41
{
42
public:
43
    TreeWrapper() : mTree(0) {}
44
    TreeWrapper(const Tree* tree) : mTree(tree) {}
184 werner 45
    void setTree(const Tree* tree) { mTree = tree; }
140 Werner 46
    virtual const QStringList getVariablesList();
47
    virtual double value(const int variableIndex);
48
 
49
private:
50
    const Tree *mTree;
183 werner 51
};
140 Werner 52
 
809 werner 53
/** RUWrapper encapsualates an iLand resource unit (1 ha pixel)
54
*/
187 iland 55
class ResourceUnit;
183 werner 56
class RUWrapper: public ExpressionWrapper
57
{
58
public:
59
    RUWrapper() : mRU(0) {}
200 werner 60
    RUWrapper(const ResourceUnit* resourceUnit) : mRU(resourceUnit) {}
291 werner 61
    void setResourceUnit(const ResourceUnit* resourceUnit) { mRU = resourceUnit; }
183 werner 62
    virtual const QStringList getVariablesList();
63
    virtual double value(const int variableIndex);
190 werner 64
 
183 werner 65
private:
187 iland 66
    const ResourceUnit *mRU;
140 Werner 67
};
68
 
809 werner 69
 
140 Werner 70
#endif // EXPRESSIONWRAPPER_H