mirror of
https://github.com/Obfuscator-Collections/VMProtect.git
synced 2024-12-26 08:20:19 +03:00
5ec92ee05e
Version 3.x.x
14 lines
207 B
C++
14 lines
207 B
C++
#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 |