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

#include "formatstatement.h"

class SqliteExpr;

class FormatExpr : public FormatStatement
{
    public:
        FormatExpr(SqliteExpr* expr);

    protected:
        void formatInternal();

    private:
        SqliteExpr* expr = nullptr;
};

#endif // FORMATEXPR_H