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