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