blob: 3abf77902a3b3312ba7d69f95097066f4cdfd491 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef COLUMNUNIQUEPANEL_H
#define COLUMNUNIQUEPANEL_H
#include "columnuniqueandnotnullpanel.h"
#include "guiSQLiteStudio_global.h"
namespace Ui {
class ColumnUniquePanel;
}
class GUI_API_EXPORT ColumnUniquePanel : public ColumnUniqueAndNotNullPanel
{
Q_OBJECT
public:
explicit ColumnUniquePanel(QWidget *parent = 0);
protected:
void storeType();
};
#endif // COLUMNUNIQUEPANEL_H
|