OpenSWMM Engine  6.0.0-alpha.3
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.3)
Loading...
Searching...
No Matches
TablesHandler.hpp
Go to the documentation of this file.
1
10
11#ifndef OPENSWMM_ENGINE_TABLES_HANDLER_HPP
12#define OPENSWMM_ENGINE_TABLES_HANDLER_HPP
13
14#include <vector>
15#include <string>
16
17namespace openswmm { struct SimulationContext; }
18
19namespace openswmm::input {
20
22void handle_timeseries(SimulationContext& ctx, const std::vector<std::string>& lines);
23
25void handle_curves(SimulationContext& ctx, const std::vector<std::string>& lines);
26
27} /* namespace openswmm::input */
28
29#endif /* OPENSWMM_ENGINE_TABLES_HANDLER_HPP */
Definition CatchmentHandler.cpp:51
void handle_curves(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [CURVES] into TableData + table_names.
Definition TablesHandler.cpp:206
void handle_timeseries(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse [TIMESERIES] into TableData + table_names.
Definition TablesHandler.cpp:57
Definition NodeCoupling.cpp:15
Central, reentrant simulation context.
Definition SimulationContext.hpp:292