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