- Defines Network, StopArea, StopPoints and JourneySections - Loads them from json using the build_from_json method
7 lines
145 B
C++
7 lines
145 B
C++
#include "geojson.h"
|
|
|
|
namespace trenesis {
|
|
Point::Point(double longitude, double latitude)
|
|
: longitude(longitude), latitude(latitude) {
|
|
}
|
|
}
|