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

#include "formatstatement.h"

class SqliteCopy;

class FormatCopy : public FormatStatement
{
    public:
        FormatCopy(SqliteCopy* copy);

    protected:
        void formatInternal();

    private:
        SqliteCopy* copy = nullptr;
};

#endif // FORMATCOPY_H