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