OpenSWMM Engine  6.0.0-alpha.3
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.3)
Loading...
Searching...
No Matches
LinksHandler.hpp
Go to the documentation of this file.
1
10
11#ifndef OPENSWMM_ENGINE_LINKS_HANDLER_HPP
12#define OPENSWMM_ENGINE_LINKS_HANDLER_HPP
13
14#include <vector>
15#include <string>
16
17namespace openswmm { struct SimulationContext; }
18
19namespace openswmm::input {
20
21void handle_conduits (SimulationContext& ctx, const std::vector<std::string>& lines);
22void handle_pumps (SimulationContext& ctx, const std::vector<std::string>& lines);
23void handle_orifices (SimulationContext& ctx, const std::vector<std::string>& lines);
24void handle_weirs (SimulationContext& ctx, const std::vector<std::string>& lines);
25void handle_outlets (SimulationContext& ctx, const std::vector<std::string>& lines);
26void handle_xsections(SimulationContext& ctx, const std::vector<std::string>& lines);
27void handle_losses (SimulationContext& ctx, const std::vector<std::string>& lines);
28void handle_transects(SimulationContext& ctx, const std::vector<std::string>& lines);
29
30} /* namespace openswmm::input */
31
32#endif /* OPENSWMM_ENGINE_LINKS_HANDLER_HPP */
Definition CatchmentHandler.cpp:51
void handle_orifices(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:123
void handle_conduits(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:49
void handle_pumps(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:81
void handle_xsections(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:290
void handle_losses(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:374
void handle_outlets(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:207
void handle_weirs(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:159
void handle_transects(SimulationContext &ctx, const std::vector< std::string > &lines)
Definition LinksHandler.cpp:400
Definition NodeCoupling.cpp:15
Central, reentrant simulation context.
Definition SimulationContext.hpp:292