Files
ReadLog/mainwindow.cpp

23 lines
319 B
C++
Raw Normal View History

2024-09-12 17:31:39 +08:00
#include "mainwindow.h"
2024-09-14 11:18:18 +08:00
#include "ui_mainwindow.h"
2024-09-12 17:31:39 +08:00
2024-09-14 11:18:18 +08:00
#include <QCompleter>
#include <QListView>
#include <QStyledItemDelegate>
#include <QLineEdit>
2024-09-12 17:31:39 +08:00
MainWindow::MainWindow(QWidget *parent)
2024-09-14 11:18:18 +08:00
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
2024-09-12 17:31:39 +08:00
ui->setupUi(this);
}
2024-09-14 11:18:18 +08:00
MainWindow::~MainWindow()
{
2024-09-12 17:31:39 +08:00
delete ui;
}