mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-09-04 10:22:21 +08:00
22 lines
280 B
C++
22 lines
280 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <DMainWindow>
|
|
#include "widget.h"
|
|
|
|
DWIDGET_USE_NAMESPACE
|
|
|
|
class MainWindow : public DMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = 0);
|
|
~MainWindow();
|
|
|
|
private:
|
|
Widget *w;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|