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