11#ifndef OPENSWMM_ENGINE_LINKS_HANDLER_HPP
12#define OPENSWMM_ENGINE_LINKS_HANDLER_HPP
17namespace openswmm {
struct SimulationContext; }
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);
Definition Controls.cpp:24