blob: 77f621900f4883001924ac69586d394c4f7afb81 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef FORMATCREATEVIEW_H
#define FORMATCREATEVIEW_H
#include "formatstatement.h"
class SqliteCreateView;
class FormatCreateView : public FormatStatement
{
public:
FormatCreateView(SqliteCreateView* createView);
protected:
void formatInternal();
private:
SqliteCreateView* createView = nullptr;
};
#endif // FORMATCREATEVIEW_H
|