What exactly do you mean by "for Qt4 Application development"? Any tool that works with C++ can be used with Qt and actually UML tools tend to operate on abstractions and not programming languages so you can use any UML tool you like, Rose included.
What exactly do you mean by "for Qt4 Application development"? Any tool that works with C++ can be used with Qt and actually UML tools tend to operate on abstractions and not programming languages so you can use any UML tool you like, Rose included.
Following the Qt naming, the getter and setter methods for <property> must look like :
<type> <property>() ... and
void set<Property>(....)
Unfortunately, most of the UML C++ code generators create :
<type> get_<property>() ... and
void set_<property>(....).
Even though the prefixes are customizable, i still haven't found a way to make them capitalize the first letter of the property name after "set" prefix.
The best I've got is :
<type> <property>() ... and
void set<property>(....) in Enterprise Architect.
Bookmarks