You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Cigarette/Cigarette/Ui/change_shift.h

28 lines
483 B
C++

#pragma once
#include <QDialog>
#include "ui_change_shift.h"
#include "QtCore/qdatetime.h"
class change_shift : public QDialog
{
Q_OBJECT
public:
change_shift(QDialog* parent = Q_NULLPTR);
~change_shift();
private:
Ui::change_shift ui;
private slots:
void on_pushButton_apply_released();
public slots:
void recMsgFromDialogSetup(QTime timeA, QTime timeB, QTime timeC);
signals:
void sendMsgToDialogSetup(QTime timeA, QTime timeB, QTime timeC);
};