aboutsummaryrefslogtreecommitdiffstats
path: root/Plugins/SqlEnterpriseFormatter/formatinsert.h
blob: 1d85c6ac8f891108b02334e6e4fcba6988bd60dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef FORMATINSERT_H
#define FORMATINSERT_H

#include "formatstatement.h"

class SqliteInsert;

class FormatInsert : public FormatStatement
{
    public:
        FormatInsert(SqliteInsert* insert);

    protected:
        void formatInternal();

    private:
        SqliteInsert* insert = nullptr;
};

#endif // FORMATINSERT_H