18 lines
311 B
C++
18 lines
311 B
C++
#ifndef TEST_WINDOW_HPP_
|
|
#define TEST_WINDOW_HPP_
|
|
|
|
#pragma once
|
|
|
|
#include "ui_test_window.h"
|
|
|
|
#include <QMainWindow>
|
|
|
|
class TestWindow : public QMainWindow, private Ui::TestWindow {
|
|
Q_OBJECT
|
|
public:
|
|
TestWindow(QMainWindow *parent = nullptr);
|
|
virtual ~TestWindow();
|
|
};
|
|
|
|
#endif /* TEST_WINDOW_HPP_ */
|