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