mirror of
https://gitee.com/houstudio/Cdroid.git
synced 2024-11-30 11:18:02 +08:00
18 lines
189 B
C++
18 lines
189 B
C++
#ifndef __NM__1_H__
|
|
#define __NM__1_H__
|
|
namespace n2{
|
|
class test2;
|
|
}
|
|
namespace n1{
|
|
|
|
class test1{
|
|
private:
|
|
friend n2::test2;
|
|
struct Student{
|
|
char *name;
|
|
};
|
|
Student a;
|
|
};
|
|
};
|
|
#endif
|