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