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