21 lines
334 B
C++
21 lines
334 B
C++
//
|
|
// Created by Krad on 2022/9/20.
|
|
//
|
|
|
|
#ifndef OMEGAV_DIDMAINWINDOW_H
|
|
#define OMEGAV_DIDMAINWINDOW_H
|
|
|
|
#include <QtWidgets/QMainWindow>
|
|
|
|
class DIDMainWindow : public QMainWindow{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DIDMainWindow(QWidget *parent = Q_NULLPTR);
|
|
~DIDMainWindow();
|
|
|
|
};
|
|
|
|
|
|
#endif //OMEGAV_DIDMAINWINDOW_H
|