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

#include "formatstatement.h"

class SqliteUpsert;

class FormatUpsert : public FormatStatement
{
    public:
        FormatUpsert(SqliteUpsert* upsert);

        void formatInternal();

    private:
        SqliteUpsert* upsert = nullptr;
};

#endif // FORMATUPSERT_H