FMT 0.9.8
Forest management tools for forest planning
Loading...
Searching...
No Matches
FMTfunctioncall.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 FMTfunctioncall_H_INCLUDED
9#define FMTfunctioncall_H_INCLUDED
10
11#include <string>
12
13
14
15namespace Core
16{
17 enum class FMTfkey
18 {
19 expo = 1,
20 ln = 2,
21 notvalid = 3
22 };
23
25 {
26 FMTfkey key;
27 public:
29 FMTfunctioncall(const std::string& base);
30 double call(const double& rhs) const;
33 bool valid() const;
34 ~FMTfunctioncall() = default;
35 };
36}
37
38#endif
Definition: FMTfunctioncall.hpp:25
FMTfunctioncall(const std::string &base)
double call(const double &rhs) const
~FMTfunctioncall()=default
FMTfunctioncall & operator=(const FMTfunctioncall &rhs)
FMTfunctioncall(const FMTfunctioncall &rhs)
The Core namespace provides classes for simulating stands/strata growth/harvest through time.
Definition: FMTaction.hpp:31
FMTfkey
Definition: FMTfunctioncall.hpp:18