fix location.h

This commit is contained in:
Aaron Po
2026-04-08 21:07:28 -04:00
parent 3c7e74e3c1
commit a7cbf7507f
2 changed files with 17 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
#include <vector> #include <vector>
#include "data_generation/data_generator.h" #include "data_generation/data_generator.h"
#include "models/location.h" #include "data_model/location.h"
#include "web_client/web_client.h" #include "web_client/web_client.h"
#include "wikipedia/wikipedia_service.h" #include "wikipedia/wikipedia_service.h"

View File

@@ -0,0 +1,16 @@
#ifndef BIERGARTEN_PIPELINE_MODELS_LOCATION_H_
#define BIERGARTEN_PIPELINE_MODELS_LOCATION_H_
#include <string>
struct Location {
std::string city;
std::string state_province;
std::string iso3166_2;
std::string country;
std::string iso3166_1;
double latitude;
double longitude;
};
#endif // BIERGARTEN_PIPELINE_MODELS_LOCATION_H_