9 lines
136 B
C++
9 lines
136 B
C++
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#include <string>
|
|
|
|
void getSystemTime();
|
|
void postLog(const std::string& message, int level);
|
|
|
|
#endif |