forked from jacyara/GenESyS-Reborn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProcessAnalyser_if.h
40 lines (34 loc) · 1.34 KB
/
ProcessAnalyser_if.h
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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: ProcessAnalyser_if.h
* Author: cancian
*
* Created on 10 de Outubro de 2018, 14:26
*/
#ifndef PROCESSANALYSER_IF_H
#define PROCESSANALYSER_IF_H
#include "List.h"
#include "SimulationScenario.h"
#include "SimulationControl.h"
#include "SimulationResponse.h"
#include "Listener.h"
/*!
* The process analyser allows to extract controls and responses from a model, incluse some of then as controls and responses for a set of scenarios to be simulated
*/
class ProcessAnalyser_if {
public:
virtual List<SimulationScenario*>* getScenarios() const = 0;
virtual List<SimulationControl*>* getControls() const = 0;
virtual List<SimulationResponse*>* getResponses() const = 0;
virtual List<SimulationControl*>* extractControlsFromModel(std::string modelFilename) const = 0;
virtual List<SimulationResponse*>* extractResponsesFromModel(std::string modelFilename) const = 0;
virtual void startSimulationOfScenario(SimulationScenario* scenario) = 0;
virtual void startSimulation() = 0;
virtual void stopSimulation() = 0;
virtual void addTraceSimulationListener(traceSimulationProcessListener traceSimulationProcessListener) = 0;
};
#endif /* PROCESSANALYSER_IF_H */