Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. [Solved] Difference between #include <Qt/qgroupbox.h> and #include <QGroupBox>

[Solved] Difference between #include <Qt/qgroupbox.h> and #include <QGroupBox>

Scheduled Pinned Locked Moved General and Desktop
3 Posts 3 Posters 3.3k Views
  • 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.
  • M Offline
    M Offline
    Mathai
    wrote on last edited by
    #1

    Hi ,

    What is the difference between #include <Qt/qgroupbox.h> and #include <QGroupBox>. Are these header files different? They seem to do the same thing.

    Thanks!

    1 Reply Last reply
    0
    • Q Offline
      Q Offline
      quendimax
      wrote on last edited by
      #2

      You can see into the QT_PATH/inclue folder. There are the Qt/qgroupbox.h header and the QtGui/QGroupBox header inside.
      The first file contents:
      @#include "../QtGui/qgroupbox.h"@
      The second file contents:
      @#include "qgroupbox.h"@
      So both variants are the same.

      1 Reply Last reply
      0
      • G Offline
        G Offline
        goetz
        wrote on last edited by
        #3

        They're both quite the same. #include <QGroupBox> resp. #include <QtGui/QGroupBox> is the recommended variant and more "C++ style".

        http://www.catb.org/~esr/faqs/smart-questions.html

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved