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