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

#include "formatstatement.h"

class SqliteDelete;

class FormatDelete : public FormatStatement
{
    public:
        FormatDelete(SqliteDelete* del);

    protected:
        void formatInternal();

    private:
        SqliteDelete* del = nullptr;
};

#endif // FORMATDELETE_H