example
i have 6 file in one folder
a.h
b.h
c.h
a.h =========
class A
{
public B temp;
}
b.h========
class B
{
};
c.h========
#include "iostream"
using namespace std;
class C
{
int age;
CString name;
CString job;
}
If you reverse engineer this, you get this.

How can I do it properly?
If reverse engineering is done in that code, what I want is this.
