mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
25 lines
399 B
C++
25 lines
399 B
C++
#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__
|