up vote 12 down vote favorite
3
share [g+] share [fb]

I just started using Qt and noticed that all the example class definitions have the macro Q_OBJECT as the first line. What is the purpose of this preprocessor macro?

link|improve this question

QT refers to QuickTime and Qt refers to the C++ library called Qt. – Bleadof Sep 3 '09 at 19:43
feedback

2 Answers

up vote 17 down vote accepted

From the Qt documentation:

The Meta-Object Compiler, moc, is the program that handles Qt's C++ extensions.

The moc tool reads a C++ header file. If it finds one or more class declarations that contain the Q_OBJECT macro, it produces a C++ source file containing the meta-object code for those classes. Among other things, meta-object code is required for the signals and slots mechanism, the run-time type information, and the dynamic property system.

link|improve this answer
feedback

It simply tells the pre-compiler that this class has gui elements and needs to be run through the 'moc' you only need to add this to classes that use the signal/slot mechanism.
But it will be quietly ignored in any other classes - it just adds to the build time.

link|improve this answer
6  
Minor nit-pick... a class doesn't have to have GUI elements to benefit from and/or need the Q_OBJECT macro. Basically, anything that inherits from QObject and needs access to the meta-data needs it. (Meta-data includes signals/slots.) – Caleb Huitt - cjhuitt Sep 2 '09 at 23:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.