mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Use a common format for all include guards, make sure each header file has one and make sure it's named after the file name. And as a random extra in this commit: Make sure the gen_version.h file generated by cmake ends with a line break. Closes #59.
29 lines
385 B
C++
29 lines
385 B
C++
#ifndef VACUUMDIALOG_H
|
|
#define VACUUMDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class VacuumDialog;
|
|
}
|
|
|
|
class DBBrowserDB;
|
|
|
|
class VacuumDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit VacuumDialog(DBBrowserDB* _db, QWidget* parent = 0);
|
|
~VacuumDialog();
|
|
|
|
private:
|
|
Ui::VacuumDialog* ui;
|
|
DBBrowserDB* db;
|
|
|
|
protected slots:
|
|
virtual void accept();
|
|
};
|
|
|
|
#endif
|