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