Book a Demo

Author Topic: Code generation with std libs  (Read 1961 times)

Maggie

  • EA User
  • **
  • Posts: 106
  • Karma: +0/-0
    • View Profile
Code generation with std libs
« on: November 29, 2010, 09:15:41 pm »
Good morning
I am using EA to develop my Qt application
I have created a package structure to hold the standard Qt classes
Now when I set up an association between one of my classes and a Qt class the generated code contains the fully qualified name
Code: [Select]
Qt::corelib::kernel::QTranslator *applicationTranslator;

What I would like to achieve is a forward declaration to QTranslator and the declaration to look like
Code: [Select]
QTranslator *applicationTranslator;

Is there a way to achieve this

Thanks

Maggie