30/09/2018, 19:31

Contructor trong Qt C++

Mình đã học qua C++ cơ bản và đang học Qt nhưng đọc mấy dòng này mình không hiểu lắm về cái hàm contructor của class Main::Private, mọi người giải thích giúp mình với.

class Main::Private : public QObject
{
    Q_OBJECT

public:
    Main *q;
    DEIntegrationInterface *de;
    TrayImpl *tray;
    GlobalShortcutsInterface *globalShortcuts;
    NotificationInterface *notifier;

    Private(Main *parent) :
        QObject(parent),
        q(parent),
        de(0),
        globalShortcuts(0),
        notifier(0)
    {

    }
};
Bài liên quan
0