aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/SqlEnterpriseFormatter/formatindexedcolumn.h
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/SqlEnterpriseFormatter/formatindexedcolumn.h')
-rw-r--r--Plugins/SqlEnterpriseFormatter/formatindexedcolumn.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Plugins/SqlEnterpriseFormatter/formatindexedcolumn.h b/Plugins/SqlEnterpriseFormatter/formatindexedcolumn.h
new file mode 100644
index 0000000..4bfb7dd
--- /dev/null
+++ b/Plugins/SqlEnterpriseFormatter/formatindexedcolumn.h
@@ -0,0 +1,20 @@
+#ifndef FORMATINDEXEDCOLUMN_H
+#define FORMATINDEXEDCOLUMN_H
+
+#include "formatstatement.h"
+
+class SqliteIndexedColumn;
+
+class FormatIndexedColumn : public FormatStatement
+{
+ public:
+ FormatIndexedColumn(SqliteIndexedColumn* idxCol);
+
+ protected:
+ void formatInternal();
+
+ private:
+ SqliteIndexedColumn* idxCol = nullptr;
+};
+
+#endif // FORMATINDEXEDCOLUMN_H