1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/svgtest/mainwindow.h

26 lines
337 B
C
Raw Normal View History

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
2017-11-18 11:38:00 +08:00
explicit MainWindow ( QWidget* parent = 0 );
~MainWindow();
2017-11-18 11:38:00 +08:00
private slots:
void updateProgress();
private:
2017-11-18 11:38:00 +08:00
Ui::MainWindow* ui;
};
#endif // MAINWINDOW_H