-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to reverse engineering C++ code but it doesn't work. #32
Comments
2Bbear
changed the title
I want to reverse engineer C++ code but it doesn't work.
I want to reverse engineering C++ code but it doesn't work.
Aug 24, 2019
I am facing the same problem. Is there any solution to it? |
I have the same problem. |
I have the same problem too. |
Same problem |
Same here. |
same |
Same |
me too |
Ditto. This has been a problem for years; what seems to be the issue? @dongjoon1251 |
Duplicate issue: #21 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The text was updated successfully, but these errors were encountered: