mirror of
https://github.com/openappsec/openappsec.git
synced 2025-09-30 19:47:44 +03:00
Jan_31_2024-Dev
This commit is contained in:
24
components/include/geo_location.h
Normal file
24
components/include/geo_location.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef __GEO_LOCATION_H__
|
||||
#define __GEO_LOCATION_H__
|
||||
|
||||
#include "i_geo_location.h"
|
||||
#include "singleton.h"
|
||||
#include "component.h"
|
||||
|
||||
class GeoLocation : public Component, Singleton::Provide<I_GeoLocation>
|
||||
{
|
||||
public:
|
||||
GeoLocation();
|
||||
~GeoLocation();
|
||||
|
||||
void preload();
|
||||
|
||||
void init();
|
||||
void fini();
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
std::unique_ptr<Impl> pimpl;
|
||||
};
|
||||
|
||||
#endif // __GEO_LOCATION_H__
|
Reference in New Issue
Block a user