๐Ÿ“ฆ jkjkil4 / RandNumGen

๐Ÿ“„ genresult.h ยท 23 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#ifndef GENRESULT_H
#define GENRESULT_H

#include <QDialog>
#include <QListWidget>
#include <QPushButton>

#include <QHBoxLayout>
#include <QVBoxLayout>

class GenResult : public QDialog
{
    Q_OBJECT
public:
    explicit GenResult(QVector<int> vResults, QWidget *parent = nullptr);
    ~GenResult() override = default;

private:
    QListWidget *listWidget = new QListWidget;
};

#endif // GENRESULT_H