2019-05-05 16:35:38 +02:00
|
|
|
//
|
|
|
|
// Created by lukas on 05.05.19.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef IPREFRESHER_LOGGER_H
|
|
|
|
#define IPREFRESHER_LOGGER_H
|
|
|
|
|
|
|
|
|
|
|
|
class Logger {
|
|
|
|
public:
|
|
|
|
void logToLogfile(std::string text);
|
2019-05-08 19:31:49 +02:00
|
|
|
|
2019-05-05 16:35:38 +02:00
|
|
|
void safeip(std::string ip);
|
2019-05-08 19:31:49 +02:00
|
|
|
|
2019-05-05 16:35:38 +02:00
|
|
|
std::string readip();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //IPREFRESHER_LOGGER_H
|