OpenSWMM Engine  6.0.0-alpha.3
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.3)
Loading...
Searching...
No Matches
InpWriter.hpp
Go to the documentation of this file.
1
15
16#ifndef OPENSWMM_INP_WRITER_HPP
17#define OPENSWMM_INP_WRITER_HPP
18
19#include <string>
20#include <vector>
21
22namespace openswmm {
23
25
26namespace inp_writer {
27
59int writeInpFile(const SimulationContext& ctx,
60 const std::string& path,
61 std::vector<std::string>* warnings = nullptr);
62
63} // namespace inp_writer
64} // namespace openswmm
65
66#endif // OPENSWMM_INP_WRITER_HPP
Definition InpWriter.cpp:56
int writeInpFile(const SimulationContext &ctx_internal, const std::string &path, std::vector< std::string > *warnings)
Write the full model to a SWMM .inp file.
Definition InpWriter.cpp:495
Definition NodeCoupling.cpp:15
Central, reentrant simulation context.
Definition SimulationContext.hpp:292