Meta Object System is a part ofQt framework core provided to support Qt extensions toC++ likesignals/slots for inter-object communication, run-timetype information, and the dynamic property system.[1]
The Meta object system consists of 3 things: QObjectclass, Q_OBJECTmacro and a tool called moc (Meta-ObjectCompiler). QObject is the base class for all Qt classes, Q_OBJECT macro is used to enable meta-object features in classes and finally moc is apreprocessor that changes Q_OBJECT macro instances toC++source code to enable meta object system mechanism in the class in which it is used.[2]
Using the meta object system has brought some criticism. InQt documentation, several reasons have been given for the use of the meta object system, including benefits ofcode generation, dynamism ofGUIs, automatic binding to scripting languages, not adding limitations and also reasonable performance in signal/slot implementation with moc.[3] There are some efforts to make Qt needless of a preprocessor. These efforts include re-implementing Qt moc using libclang.[4]