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