
How to retrieve class's information
Quote:
> Hello,
> Is there anyway to retrieve all the name class's member variable, member
> functions?
> For example:
> class A
> {
> public:
> int m_ID;
> CString m_strName;
> int GetID();
> CString GetName();
> }
> Then the information I would like to retrieve is some texts like this:
> Class member variables: "m_ID", "m_strName"
> Class member functions: "GetID","GetName"
> Please help,
> Thank you.
Without the source code? No, the variables and function names disappear
during compilation and do not exist in the exe.
--
Scott McPhillips [VC++ MVP]