Move source files to src directory

This commit is contained in:
2025-05-30 16:45:35 +02:00
parent ce67b35bfa
commit a0422683bd
64 changed files with 90 additions and 41 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef MARKEDFILES_H
#define MARKEDFILES_H
#include <QDialog>
#include <QTableView>
#include <QSqlTableModel>
class MarkedFiles : public QDialog
{
Q_OBJECT
QTableView *m_tableView;
QSqlTableModel *m_model;
public:
MarkedFiles(QWidget *parent = nullptr);
protected slots:
void clearSelected();
void clearAll();
};
#endif // MARKEDFILES_H