Can somebody please explain why do I create in qt public slots but not public signals?
Can somebody please explain why do I create in qt public slots but not
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Slots are normal functions, and can be public, private or protected.
Signals are always protected when eventually generated by the ‘moc’ program.
But note this (from some old Qt 4.7 docs):