home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!usc!sdd.hp.com!swrinde!elroy.jpl.nasa.gov!ncar!ico!auto-trol!bradav
- From: bradav@auto-trol.com (Brad Davidson)
- Newsgroups: comp.lang.c++
- Subject: Looking for a class expander tool
- Message-ID: <1992Jul22.203249.25850@auto-trol.com>
- Date: 22 Jul 92 20:32:49 GMT
- Sender: news@auto-trol.com
- Organization: Auto-trol Technology Corporation
- Lines: 37
- Originator: bradav@bradav
- Nntp-Posting-Host: bradav.auto-trol.com
-
-
- I am searching for a tool that will take a set of header files and for
- each class definition expand it to comment in or include all the
- inherited classes.
-
- For example
-
- Class A
- {
- protected:
- int A_data;
- };
-
- Class B
- {
- protected:
- int B_data;
- };
-
- Class C : public A : public B
- {
- int C_data;
- }
-
- Through the class expander I get the following for Class C
-
- Class C
- {
- int A::A_data;
- int B::B_data;
- int C_data;
- };
-
- so that I can see all the inherited data and methods since in real life the
- classes are not quite this simple.
-
- Brad Davidson
-