Shared object obfuscation concept proven.

This commit is contained in:
Vahagn Khachatryan
2015-03-03 22:23:02 +04:00
parent f62e08cbb7
commit 67b4092b96
5 changed files with 43 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
#ifndef __INTERFACE_TO_MY_VERY_SECRET_CLASS__
#define __INTERFACE_TO_MY_VERY_SECRET_CLASS__
class MyVerySecretClass
{
private:
int secret_var;
public:
MyVerySecretClass();
~MyVerySecretClass();
void secret_method1();
void secret_method2();
void secret_method3();
};
#endif