diff options
Diffstat (limited to 'Plugins/SqlEnterpriseFormatter/formatsavepoint.h')
| -rw-r--r-- | Plugins/SqlEnterpriseFormatter/formatsavepoint.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Plugins/SqlEnterpriseFormatter/formatsavepoint.h b/Plugins/SqlEnterpriseFormatter/formatsavepoint.h new file mode 100644 index 0000000..f9f31c1 --- /dev/null +++ b/Plugins/SqlEnterpriseFormatter/formatsavepoint.h @@ -0,0 +1,20 @@ +#ifndef FORMATSAVEPOINT_H +#define FORMATSAVEPOINT_H + +#include "formatstatement.h" + +class SqliteSavepoint; + +class FormatSavepoint : public FormatStatement +{ + public: + FormatSavepoint(SqliteSavepoint* savepoint); + + protected: + void formatInternal(); + + private: + SqliteSavepoint* savepoint = nullptr; +}; + +#endif // FORMATSAVEPOINT_H |
