Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef TIMERDIALOG_H
#define TIMERDIALOG_H
#include <QDialog>
#include <QTimer>
namespace Ui {
class TimerDialog;
}
class TimerDialog : public QDialog
{
Q_OBJECT
public:
explicit TimerDialog(QWidget *parent = 0);
~TimerDialog();
int timeValue;
void setUpTimer(int);
void updateTime();
void startTimer();
void stopTimer();
QTimer *timerDialogTimer;
public slots:
void removeTimer();
private slots:
void onCountDown();
private:
Ui::TimerDialog *ui;
};
#endif // TIMERDIALOG_H