I\'ve found conflicting answers on the web - some say it does, some say it doesn\'t. I was unable to find any details in the official Qt documentation either. So does Qt hav
Qt uses the Meta Object Compiler (MOC) to make the signal and slot magic work (e.g. make function callbacks based on user signal and slot definitions). So Qt isn’t actuall C++, but is really Qt’s own syntax, which is a lot like C++, but with signals and slots. This makes ‘external “c”’ useless.