I want to reverse engineer models from source code with Enterprise Architect 11. The class definitions look like:
class MYCUSTOMMACRO(className) : public baseClass
{
...
}
Unfortunately, EA skips these classes, as the macro was not recognized. If I define a language macro in EA, MYCUSTOMMACRO(className) is skipped as a whole. This, again, produces a parsing error, as the class name is missing.
So, is there a way to extract the class name out of the macro and import the classes?
Thanks, Oliver
g++ -E,cl /E) - which will expand the macros - then letting this "EA" thing chew on that.... - Tony Delroy