mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
fix location.h
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#include <vector>
|
||||
|
||||
#include "data_generation/data_generator.h"
|
||||
#include "models/location.h"
|
||||
#include "data_model/location.h"
|
||||
#include "web_client/web_client.h"
|
||||
#include "wikipedia/wikipedia_service.h"
|
||||
|
||||
|
||||
16
pipeline/includes/data_model/location.h
Normal file
16
pipeline/includes/data_model/location.h
Normal 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_
|
||||
Reference in New Issue
Block a user