19 lines
246 B
C++
19 lines
246 B
C++
//
|
|
// Created by lukas on 18.06.19.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "API.h"
|
|
|
|
#include <string>
|
|
|
|
class IPAPI : API{
|
|
public:
|
|
/**
|
|
* get global ip of current internet connection
|
|
* @return global ip
|
|
*/
|
|
std::string getGlobalIp();
|
|
};
|