File: pausedialog.h

package info (click to toggle)
imageshack-uploader 2.2%2Bhg20100408.d802dea89428-5.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,608 kB
  • sloc: cpp: 5,539; ansic: 1,012; makefile: 26; sh: 5
file content (24 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef PAUSEDIALOG_H
#define PAUSEDIALOG_H

#include <QtGui/QDialog>

namespace Ui {
    class PauseDialog;
}

class PauseDialog : public QDialog {
    Q_OBJECT
public:
    PauseDialog(QWidget *parent = 0);
    ~PauseDialog();
    void accept();

protected:
    void changeEvent(QEvent *e);

private:
    Ui::PauseDialog *m_ui;
};

#endif // PAUSEDIALOG_H