DragonNest/Server/NetLauncher/LogCleaner.h

20 lines
220 B
C
Raw Normal View History

2024-12-19 09:48:26 +08:00
#pragma once
#include <atltime.h>
class CLogCleaner
{
public:
CLogCleaner(void);
~CLogCleaner(void);
public:
void CleanLog() const;
private:
void SetPath();
CTime GetCleanTime() const;
private:
string path;
};