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