Subversion Repositories public iLand

Rev

Rev 187 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1
 
106 Werner 2
#ifndef STANDLOADER_H
3
#define STANDLOADER_H
4
 
5
class Model;
6
class RessourceUnit;
7
 
8
class StandLoader
9
{
10
public:
11
    StandLoader(Model *model): mModel(model) {}
12
    void processInit();
13
    void loadFromPicus(const QString &fileName, QPointF offset=QPointF(), RessourceUnit *ru=NULL);
14
private:
15
    Model *mModel;
16
};
17
 
18
#endif // STANDLOADER_H