-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimulator.h
More file actions
43 lines (28 loc) · 755 Bytes
/
Simulator.h
File metadata and controls
43 lines (28 loc) · 755 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* FIT VUT Brno
* IMS: Projekt "Knihovna pro kombinovanou simulaci"
*
* @author Jiri Petruzelka xpetru07@stud.fit.vutbr.cz
* @author Petr Mejzlik xmejzl03@stud.fit.vutbr.cz
*/
#ifndef SIMULATOR_H
#define SIMULATOR_H
#include <vector>
#include "IMSimInternal.h"
using std::vector;
namespace IMSim {
class Simulation;
/**
* Responsible for handling the simulation experiment
*/
class Simulator {
public:
Simulation* createSimulation();
Simulation* createSimulation(char* name);
Simulation* createSimulation(STEP minStep, STEP maxStep, PRECISION precision = 0);
private:
Simulation* addSimulation(Simulation * simulation);
vector<Simulation*> simulations;
};
}
#endif /* SIMULATOR_H */