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