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

#include "formatstatement.h"

class SqliteAttach;

class FormatAttach : public FormatStatement
{
    public:
        FormatAttach(SqliteAttach* att);

    protected:
        void formatInternal();

    private:
        SqliteAttach* att = nullptr;
};

#endif // FORMATATTACH_H