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