vmprotect-source/anonfiles.com_d1D7M7q9z4_vmpsrc/VMProtectCon/main.h

14 lines
207 B
C
Raw Permalink Normal View History

2024-11-15 17:08:58 -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