OpenSWMM Engine  6.0.0-alpha.1
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.1)
Loading...
Searching...
No Matches
OptionsHandler.hpp
Go to the documentation of this file.
1
12#ifndef OPENSWMM_ENGINE_OPTIONS_HANDLER_HPP
13#define OPENSWMM_ENGINE_OPTIONS_HANDLER_HPP
14
15#include <vector>
16#include <string>
17
18namespace openswmm {
19 struct SimulationContext;
20}
21
22namespace openswmm::input {
23
34void handle_options(SimulationContext& ctx,
35 const std::vector<std::string>& lines);
36
37} /* namespace openswmm::input */
38
39#endif /* OPENSWMM_ENGINE_OPTIONS_HANDLER_HPP */
Definition CatchmentHandler.cpp:44
void handle_options(SimulationContext &ctx, const std::vector< std::string > &lines)
Parse the [OPTIONS] section into ctx.options.
Definition OptionsHandler.cpp:165
Definition Controls.cpp:24