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