iLand
soilinputout.h
Go to the documentation of this file.
1#ifndef SOILINPUTOUT_H
2#define SOILINPUTOUT_H
3#include "output.h"
4
5class SoilInputOut : public Output
6{
7public:
9 virtual void exec();
10 virtual void setup();
11
12};
13
14#endif // SOILINPUTOUT_H
The Output class abstracts output data (database, textbased, ...).
Definition: output.h:55
Definition: soilinputout.h:6
SoilInputOut()
Definition: soilinputout.cpp:7
virtual void setup()
setup() is called during project setup and can be ovveridden for specific setup
Definition: soilinputout.cpp:44
virtual void exec()
main function that executes the output
Definition: soilinputout.cpp:23