VMProtect/VMProtectCon/main.h

14 lines
207 B
C
Raw Normal View History

2023-05-14 16:21:09 +03:00
#ifndef MAIN_H
#define MAIN_H
class ConsoleApplication
{
public:
ConsoleApplication(const std::vector<std::string> &args);
int Run();
private:
std::vector<std::string> args_;
ConsoleLog log_;
};
#endif