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