OpenSWMM Engine  6.0.0-alpha.1
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.1)
Loading...
Searching...
No Matches
ExternalContentWriter.hpp
Go to the documentation of this file.
1
38
39#ifndef OPENSWMM_GEOPACKAGE_EXTERNAL_CONTENT_WRITER_HPP
40#define OPENSWMM_GEOPACKAGE_EXTERNAL_CONTENT_WRITER_HPP
41
42#include <string>
43
44struct sqlite3;
45
46namespace openswmm {
47 struct SimulationContext;
48}
49
50namespace openswmm::gpkg {
51
59void write_external_content(sqlite3* db,
60 const openswmm::SimulationContext& ctx,
61 const std::string& simulation_id);
62
63} // namespace openswmm::gpkg
64
65#endif // OPENSWMM_GEOPACKAGE_EXTERNAL_CONTENT_WRITER_HPP
Definition ExternalContentReader.cpp:33
void write_external_content(sqlite3 *db, const openswmm::SimulationContext &ctx, const std::string &sim)
Populate the Part D content tables for simulation_id from the in-memory model.
Definition ExternalContentWriter.cpp:527
Definition NodeCoupling.cpp:15
Central, reentrant simulation context.
Definition SimulationContext.hpp:292