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