PDA

View Full Version : is the framework of Qt, a c++ Language?



rezas1000
13th September 2014, 18:22
Hello,is the framework of Qt, a c++ Language? In Qt, there are Words such as "private slot".but in standard and grammer of c++ there are not "private slot"!!!

anda_skoa
13th September 2014, 20:02
Yes, Qt is implemented in C++.

private is an access modified keyword, slots is a preprocessor macro. See qobjectdefs.h for its definition.

Cheers,
_