OpenSWMM Engine  6.0.0-alpha.1
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.1)
Loading...
Searching...
No Matches
RaingageFormat.hpp
Go to the documentation of this file.
1
24
25#ifndef OPENSWMM_GEOPACKAGE_RAINGAGE_FORMAT_HPP
26#define OPENSWMM_GEOPACKAGE_RAINGAGE_FORMAT_HPP
27
28#include "FormatTypes.hpp"
29
30#include <string>
31#include <vector>
32
34
35FormatResult parseRaingageStd(const std::string& path,
36 std::vector<RaingageRow>& rows);
37
38FormatResult writeRaingageStd(const std::string& path,
39 const std::vector<RaingageRow>& rows);
40
41} // namespace openswmm::gpkg::formats
42
43#endif // OPENSWMM_GEOPACKAGE_RAINGAGE_FORMAT_HPP
Plain-data types shared by every external-file format parser.
Definition ClimateFormat.cpp:19
FormatResult writeRaingageStd(const std::string &path, const std::vector< RaingageRow > &rows)
Definition RaingageFormat.cpp:47
FormatResult parseRaingageStd(const std::string &path, std::vector< RaingageRow > &rows)
Definition RaingageFormat.cpp:19
Lightweight outcome for format parse / materialise calls.
Definition FormatTypes.hpp:165