24#ifndef _GEMA_RESULTS_LOADER_H_
25#define _GEMA_RESULTS_LOADER_H_
Auxiliary class responsible for loading results information from a Lua table.
Definition gmResultsLoader.h:36
bool loadResultRules(LuaTable &resultsData, GmResultsData *data)
Loads SaveRule, PrintRule and MonitorRule definitions stored in the 'resultsData' table into the resu...
Definition gmResultsLoader.cpp:176
bool loadResultDataSets(LuaTable &resultsData, GmResultsData *data)
Loads ResultsDataSet definitions stored in the 'resultsData' table into the results object 'data'.
Definition gmResultsLoader.cpp:100
GmSimulationData * _simData
Simulation data object sent as a parameter to plugin objects.
Definition gmResultsLoader.h:50
GmPluginLoader * _pluginLoader
Plugin loader.
Definition gmResultsLoader.h:49
~GmResultsLoader()
Destructor.
Definition gmResultsLoader.cpp:61
GmResultsLoader(const GmLogCategory &logger, GmPluginLoader *pluginLoader, GmSimulationData *simData)
Constructor. Receives as a parameters the logger object that will be used to emmit messages and the p...
Definition gmResultsLoader.cpp:49
bool loadTimeSets(LuaTable &resultsData, GmResultsData *data)
Loads TimeSet definitions stored in the 'resultsData' table into the results object 'data'.
Definition gmResultsLoader.cpp:137
bool load(LuaTable &resultsData)
Loads results configuration data from the Lua table received as a parameter.
Definition gmResultsLoader.cpp:75
const GmLogCategory & _logger
Reference to the logger object used to emmit messages.
Definition gmResultsLoader.h:48