srcML / srcUML

UML Class diagram reverse engineering tool
GNU General Public License v3.0
14 stars 5 forks source link

Rewrite using srcSAX Event Dispatch #5

Closed mjdecker closed 8 years ago

mjdecker commented 8 years ago

Once event dispatcher is done, rewrite to use the dispatcher.

Also, will need to write test cases before conversion.

Some other things are not currently handled like C++ deleted functions.

mjdecker commented 8 years ago

Some decisions about what we will markup.

// if number use number
int a [10];
// if identifier use a identifier
int a [N];

Abstract class stereotype can be added. Anything, with at least pure virtual (not interface).

Add support for class stereotypes. If there use them, if not do not.

Can also allow abstract getter/setter out using this and set as public. Possibly an option.

mjdecker commented 8 years ago

Initial rewrite done with pull request #8.