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