hydrobricks
Loading...
Searching...
No Matches
Vegetation.h
1#ifndef HYDROBRICKS_VEGETATION_H
2#define HYDROBRICKS_VEGETATION_H
3
4#include "Includes.h"
5#include "LandCover.h"
6
7class Vegetation : public LandCover {
8 public:
10
14 void SetParameters(const BrickSettings& brickSettings) override;
15
16 void ApplyConstraints(double timeStep) override;
17
18 void Finalize() override;
19
20 protected:
21 private:
22};
23
24#endif // HYDROBRICKS_VEGETATION_H
Definition LandCover.h:10
Definition Vegetation.h:7
void SetParameters(const BrickSettings &brickSettings) override
Definition Vegetation.cpp:6
Definition SettingsModel.h:45