DynuIPRefresher/inc/FileLogger.h

24 lines
308 B
C
Raw Normal View History

2019-10-26 12:41:43 +00:00
//
// Created by lukas on 05.05.19.
//
2020-04-30 10:16:29 +00:00
2019-10-26 12:41:43 +00:00
#pragma once
#include <string>
2020-04-30 10:16:29 +00:00
2019-10-26 12:41:43 +00:00
class FileLogger {
public:
/**
* safe ip to temp file
* @param ip ip address to save
*/
void safeip(std::string ip);
/**
* read ip from file
* @return read ip
*/
std::string readip();
};