SWMMVis  6.0.0-alpha.4
Qt6/C++ GIS-based graphical user interface for the SWMMVis engine (6.0.0-alpha.4)
Loading...
Searching...
No Matches
culvertcodes.h
Go to the documentation of this file.
1
19#ifndef CULVERTCODES_H
20#define CULVERTCODES_H
21
22#include <QString>
23#include <vector>
24
28{
29 int code;
30 const char *group;
31 const char *label;
32};
33
36[[nodiscard]] const std::vector<CulvertCodeInfo> &culvertCodes();
37
41[[nodiscard]] QString culvertCodeLabel(int code);
42
43#endif // CULVERTCODES_H
QString culvertCodeLabel(int code)
Definition culvertcodes.cpp:111
const std::vector< CulvertCodeInfo > & culvertCodes()
Definition culvertcodes.cpp:20
int code
Definition heatconfigdialog.cpp:40
Definition culvertcodes.h:28
int code
1..57 (HDS-5 chart code); 0 entry not stored here
Definition culvertcodes.h:29
const char * group
Shape / material group (ASCII)
Definition culvertcodes.h:30
const char * label
Inlet-edge description (ASCII)
Definition culvertcodes.h:31