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