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