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