Files
test/shared_object_obfuscation/interface.h
2015-03-03 12:09:18 +04:00

20 lines
261 B
C++

#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();
};
#endif