diff options
| author | 2014-12-06 17:33:25 -0500 | |
|---|---|---|
| committer | 2014-12-06 17:33:25 -0500 | |
| commit | 7167ce41b61d2ba2cdb526777a4233eb84a3b66a (patch) | |
| tree | a35c14143716e1f2c98f808c81f89426045a946f /Plugins/SqlEnterpriseFormatter/formatcreatetrigger.h | |
Imported Upstream version 2.99.6upstream/2.99.6
Diffstat (limited to 'Plugins/SqlEnterpriseFormatter/formatcreatetrigger.h')
| -rw-r--r-- | Plugins/SqlEnterpriseFormatter/formatcreatetrigger.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Plugins/SqlEnterpriseFormatter/formatcreatetrigger.h b/Plugins/SqlEnterpriseFormatter/formatcreatetrigger.h new file mode 100644 index 0000000..795c2c7 --- /dev/null +++ b/Plugins/SqlEnterpriseFormatter/formatcreatetrigger.h @@ -0,0 +1,31 @@ +#ifndef FORMATCREATETRIGGER_H +#define FORMATCREATETRIGGER_H + +#include "formatstatement.h" +#include "parser/ast/sqlitecreatetrigger.h" + +class FormatCreateTrigger : public FormatStatement +{ + public: + FormatCreateTrigger(SqliteCreateTrigger* createTrig); + + protected: + void formatInternal(); + + private: + SqliteCreateTrigger* createTrig = nullptr; +}; + +class FormatCreateTriggerEvent : public FormatStatement +{ + public: + FormatCreateTriggerEvent(SqliteCreateTrigger::Event* ev); + + protected: + void formatInternal(); + + private: + SqliteCreateTrigger::Event* ev = nullptr; +}; + +#endif // FORMATCREATETRIGGER_H |
