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