diff options
Diffstat (limited to 'Plugins/SqlEnterpriseFormatter/formatcreateindex.h')
| -rw-r--r-- | Plugins/SqlEnterpriseFormatter/formatcreateindex.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Plugins/SqlEnterpriseFormatter/formatcreateindex.h b/Plugins/SqlEnterpriseFormatter/formatcreateindex.h new file mode 100644 index 0000000..1f1b109 --- /dev/null +++ b/Plugins/SqlEnterpriseFormatter/formatcreateindex.h @@ -0,0 +1,20 @@ +#ifndef FORMATCREATEINDEX_H +#define FORMATCREATEINDEX_H + +#include "formatstatement.h" + +class SqliteCreateIndex; + +class FormatCreateIndex : public FormatStatement +{ + public: + FormatCreateIndex(SqliteCreateIndex* createIndex); + + protected: + void formatInternal(); + + private: + SqliteCreateIndex* createIndex = nullptr; +}; + +#endif // FORMATCREATEINDEX_H |
