blob: ac71c3f67c84feca2249e8febad1f9e81312463a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* HistoricSimulation.h
*
* Created on: 27.05.2011
* Author: eisenhauer
*/
#ifndef HISTORICSIMULATION_H_
#define HISTORICSIMULATION_H_
#include "Parametrisation.h"
#include <vector>
typedef unsigned char uint8_t;
typedef unsigned uint32_t;
class HistoricSimulation {
public:
HistoricSimulation();
virtual ~HistoricSimulation();
void doSimulation(const Parametrisation& param, const enHoldingTime& nenHoldingTime);
private:
std::vector< std::vector<double> > mData;
};
#endif /* HISTORICSIMULATION_H_ */
|