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