Trenesis/lib/trenesis/geojson.cpp
Paul Breugnot 61aec3d856 Internal train network structure
- Defines Network, StopArea, StopPoints and JourneySections
- Loads them from json using the build_from_json method
2026-01-03 14:34:00 +01:00

7 lines
145 B
C++

#include "geojson.h"
namespace trenesis {
Point::Point(double longitude, double latitude)
: longitude(longitude), latitude(latitude) {
}
}