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