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