mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -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.
31 lines
482 B
C++
31 lines
482 B
C++
#ifndef CREATEINDEXDIALOG_H
|
|
#define CREATEINDEXDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class DBBrowserDB;
|
|
|
|
namespace Ui {
|
|
class CreateIndexDialog;
|
|
}
|
|
|
|
class CreateIndexDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CreateIndexDialog(DBBrowserDB* db, QWidget* parent = 0);
|
|
~CreateIndexDialog();
|
|
|
|
private slots:
|
|
void accept();
|
|
void tableChanged(const QString& new_table);
|
|
void checkInput();
|
|
|
|
private:
|
|
DBBrowserDB* pdb;
|
|
Ui::CreateIndexDialog* ui;
|
|
};
|
|
|
|
#endif
|