Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct


    Qt World Summit: Early-Bird Tickets

    Solved QT class default access modifier

    General and Desktop
    2
    4
    67
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • J
      Jc_Opc last edited by

      Hi,

      This is a quick question, when a class is defined, what would be the default access modifier if there is none used after Q_OBJECT macro?

      class mainW : public QMAinWIndow
      {
      Q_OBJECT
      static const size_t var = 10;
      ...
      public:
      ...
      }

      1 Reply Last reply Reply Quote 0
      • SGaist
        SGaist Lifetime Qt Champion last edited by

        Hi and welcome to devnet,

        That's basic C++, everything that is above your "public:" is private.

        Interested in AI ? www.idiap.ch
        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

        1 Reply Last reply Reply Quote 0
        • J
          Jc_Opc last edited by

          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?

          1 Reply Last reply Reply Quote 0
          • SGaist
            SGaist Lifetime Qt Champion last edited by

            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.

            Interested in AI ? www.idiap.ch
            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

            1 Reply Last reply Reply Quote 0
            • First post
              Last post