School Commit Init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
#include "ParticipantModel.h"
|
||||
#include <QWidget>
|
||||
#include <QTableView>
|
||||
#include <QLineEdit>
|
||||
#include <QPushButton>
|
||||
|
||||
class ParticipantView : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
private:
|
||||
ParticipantModel* model;
|
||||
QTableView* view;
|
||||
QLineEdit* answerEdit;
|
||||
QPushButton* addButton;
|
||||
void initGUI();
|
||||
void connectSignalsAndSlots();
|
||||
public:
|
||||
ParticipantView(ParticipantModel* model, QWidget* parent = nullptr);
|
||||
~ParticipantView();
|
||||
};
|
||||
Reference in New Issue
Block a user