hydrobricks
Loading...
Searching...
No Matches
Forcing.h
1
#ifndef HYDROBRICKS_FORCING_H
2
#define HYDROBRICKS_FORCING_H
3
4
#include "Includes.h"
5
#include "TimeSeriesData.h"
6
7
class
Forcing
:
public
wxObject {
8
public
:
9
explicit
Forcing
(VariableType type);
10
11
~Forcing
()
override
=
default
;
12
13
void
AttachTimeSeriesData(
TimeSeriesData
* timeSeriesData);
14
15
VariableType GetType() {
16
return
m_type;
17
}
18
19
double
GetValue();
20
21
protected
:
22
VariableType m_type;
23
TimeSeriesData
* m_timeSeriesData;
24
25
private
:
26
};
27
28
#endif
// HYDROBRICKS_FORCING_H
Forcing
Definition
Forcing.h:7
TimeSeriesData
Definition
TimeSeriesData.h:6
src
base
Forcing.h
Generated by
1.12.0