10 lines
112 B
C++
10 lines
112 B
C++
class S
|
|
{
|
|
class priv_type;
|
|
priv_type* priv;
|
|
|
|
friend int public_function(S*);
|
|
};
|
|
|
|
int public_function(S*);
|