QT class default access modifier
Solved
General and Desktop
-
Hi and welcome to devnet,
That's basic C++, everything that is above your "public:" is private.
-
Thanks.. I thought for QT was different... I am looking at the code and still there are many times the developer used "private" word many times inside the same class. I am not talking about private slots but some pointers and functions. Is it normal to find this kind of coding habit in QT world?
-
That's unrelated to Qt.
I have the habit of keeping things in order together by type.
All public methods together, then the protected and then the private. And then again with the variables.