aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/SqlEnterpriseFormatter/formatreindex.h
blob: 018d4226e1b3bbf2bf267f576d0862ffea3ffb3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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