hydrobricks
Loading...
Searching...
No Matches
GenericLandCover.h
1#ifndef HYDROBRICKS_GENERIC_LAND_COVER_H
2#define HYDROBRICKS_GENERIC_LAND_COVER_H
3
4#include "Includes.h"
5#include "LandCover.h"
6
7class GenericLandCover : 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_GENERIC_LAND_COVER_H
Definition GenericLandCover.h:7
void Finalize() override
Definition GenericLandCover.cpp:14
void ApplyConstraints(double timeStep) override
Definition GenericLandCover.cpp:10
void SetParameters(const BrickSettings &brickSettings) override
Definition GenericLandCover.cpp:6
Definition LandCover.h:10
Definition SettingsModel.h:45