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