Answer the question
In order to leave comments, you need to log in
Qt. Why is a derived class created by default?
I just started learning Qt Framework. Created "Application Qt Widgets"
And by default a derived class from QWidget was added.
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
private:
Ui::Widget *ui;
public:
explicit Widget(QWidget *parent = 0);
~Widget();
};
#endif // WIDGET_H
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question