- Defines Network, StopArea, StopPoints and JourneySections - Loads them from json using the build_from_json method
10 lines
141 B
C++
10 lines
141 B
C++
#pragma once
|
|
|
|
namespace trenesis {
|
|
struct Point {
|
|
double longitude;
|
|
double latitude;
|
|
|
|
Point(double longitude, double latitude);
|
|
};
|
|
}
|