diff options
Diffstat (limited to 'Plugins/SqlEnterpriseFormatter/formatupsert.h')
| -rw-r--r-- | Plugins/SqlEnterpriseFormatter/formatupsert.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Plugins/SqlEnterpriseFormatter/formatupsert.h b/Plugins/SqlEnterpriseFormatter/formatupsert.h new file mode 100644 index 0000000..3aca8f8 --- /dev/null +++ b/Plugins/SqlEnterpriseFormatter/formatupsert.h @@ -0,0 +1,19 @@ +#ifndef FORMATUPSERT_H +#define FORMATUPSERT_H + +#include "formatstatement.h" + +class SqliteUpsert; + +class FormatUpsert : public FormatStatement +{ + public: + FormatUpsert(SqliteUpsert* upsert); + + void formatInternal(); + + private: + SqliteUpsert* upsert = nullptr; +}; + +#endif // FORMATUPSERT_H |
