11#ifndef OPENSWMM_ENGINE_QUALITY_HANDLER_HPP
12#define OPENSWMM_ENGINE_QUALITY_HANDLER_HPP
17namespace openswmm {
struct SimulationContext; }
22void handle_pollutants(SimulationContext& ctx,
const std::vector<std::string>& lines);
25void handle_landuses(SimulationContext& ctx,
const std::vector<std::string>& lines);
28void handle_coverages(SimulationContext& ctx,
const std::vector<std::string>& lines);
31void handle_buildup(SimulationContext& ctx,
const std::vector<std::string>& lines);
34void handle_washoff(SimulationContext& ctx,
const std::vector<std::string>& lines);
37void handle_treatment(SimulationContext& ctx,
const std::vector<std::string>& lines);
40void handle_loadings(SimulationContext& ctx,
const std::vector<std::string>& lines);
Definition Controls.cpp:24