1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef FORMATPRAGMA_H #define FORMATPRAGMA_H #include "formatstatement.h" class SqlitePragma; class FormatPragma : public FormatStatement { public: FormatPragma(SqlitePragma* pragma); protected: void formatInternal(); private: SqlitePragma* pragma = nullptr; }; #endif // FORMATPRAGMA_H