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