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