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
19 void ApplyConstraints(double timeStep) override;
20
24 void Finalize() override;
25};
26
27#endif // HYDROBRICKS_VEGETATION_H
Definition LandCover.h:10
Definition Vegetation.h:7
void ApplyConstraints(double timeStep) override
Definition Vegetation.cpp:10
void SetParameters(const BrickSettings &brickSettings) override
Definition Vegetation.cpp:6
void Finalize() override
Definition Vegetation.cpp:14
Definition SettingsModel.h:45