Hi
I read somewhere that the keywords signal and slot(when used in class definition)will be translated to pure c++ by preprocessor.Is it a Qt defined(modified)C++ preprocessor?
thanks
Hi
I read somewhere that the keywords signal and slot(when used in class definition)will be translated to pure c++ by preprocessor.Is it a Qt defined(modified)C++ preprocessor?
thanks
Try to be useful for your society,not important.
------------------------------------------------------
Every thing that has a beginning,Has an end.
The words signal and slot are first processed by the standard C++ preprocessor
Qt Code:
# define slots # define signals protectedTo copy to clipboard, switch view to plain text mode
(from src/corelib/kernel/qobjectdefs.h)
and also by moc, which will generate moc_*.cpp-files with the added functionality
Bookmarks