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