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

#include "formatstatement.h"

class SqliteOrderBy;

class FormatOrderBy : public FormatStatement
{
    public:
        FormatOrderBy(SqliteOrderBy *orderBy);

        void formatInternal();

    private:
        SqliteOrderBy *orderBy = nullptr;
};

#endif // FORMATORDERBY_H