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