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