FMT 0.9.8
Forest management tools for forest planning
Loading...
Searching...
No Matches
FMTdevelopmentpath.hpp
Go to the documentation of this file.
1/*
2Copyright (c) 2019 Gouvernement du Québec
3
4SPDX-License-Identifier: LiLiQ-R-1.1
5License-Filename: LICENSES/EN/LiLiQ-R11unicode.txt
6*/
7
8#ifndef FMTdevelopmentpath_H_INCLUDED
9#define FMTdevelopmentpath_H_INCLUDED
10
11
12#include <memory>
13
14namespace Core
15{
16class FMTdevelopment;
17
19 {
20 public:
21 std::unique_ptr<FMTdevelopment> development;
22 double proportion;
25 FMTdevelopmentpath(const FMTdevelopment& ldevelopment,
26 const double& lproportion);
29 };
30}
31
32
33#endif
Definition: FMTdevelopment.hpp:44
Definition: FMTdevelopmentpath.hpp:19
double proportion
Definition: FMTdevelopmentpath.hpp:22
std::unique_ptr< FMTdevelopment > development
Definition: FMTdevelopmentpath.hpp:21
FMTdevelopmentpath(const FMTdevelopmentpath &rhs)
FMTdevelopmentpath(const FMTdevelopment &ldevelopment, const double &lproportion)
FMTdevelopmentpath & operator=(const FMTdevelopmentpath &rhs)
The Core namespace provides classes for simulating stands/strata growth/harvest through time.
Definition: FMTaction.hpp:31