00001 /* 00002 For general Sqliteman copyright and licensing information please refer 00003 to the COPYING file provided with the program. Following this notice may exist 00004 a copyright and/or license notice that predates the release of Sqliteman 00005 for which a new license (GPL+exception) is in place. 00006 */ 00007 00008 #ifndef VACUUMDIALOG_H 00009 #define VACUUMDIALOG_H 00010 00011 #include <qdialog.h> 00012 00013 #include "ui_vacuumdialog.h" 00014 00019 class VacuumDialog : public QDialog 00020 { 00021 Q_OBJECT 00022 00023 public: 00024 VacuumDialog(QWidget * parent = 0); 00025 ~VacuumDialog(){}; 00026 00027 private: 00028 Ui::VacuumDialog ui; 00029 00030 private slots: 00031 void allButton_clicked(); 00032 void tableButton_clicked(); 00033 }; 00034 00035 #endif
1.5.5