21 lines
285 B
C++
21 lines
285 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();
|
|
void secret_method3();
|
|
};
|
|
|
|
#endif
|