Simple UserOperationLog table.
This commit is contained in:
23
src/UserOperationLogForm.h
Normal file
23
src/UserOperationLogForm.h
Normal file
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// Created by Krad on 2021/11/23.
|
||||
//
|
||||
|
||||
#ifndef GUI_USEROPERATIONLOGFORM_H
|
||||
#define GUI_USEROPERATIONLOGFORM_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QtWidgets/QTableView>
|
||||
|
||||
class UserOperationLogForm:public QWidget {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit UserOperationLogForm(QWidget *parent = nullptr);
|
||||
~UserOperationLogForm();
|
||||
void loadUserOperationLog();
|
||||
|
||||
private:
|
||||
QTableView * table = nullptr;
|
||||
};
|
||||
|
||||
|
||||
#endif //GUI_USEROPERATIONLOGFORM_H
|
||||
Reference in New Issue
Block a user