aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/parser/ast/sqlitedeferrable.h
blob: 8fdf06a55808026f5343a3250a77e15bdbfb112f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef SQLITEDEFERRABLE_H
#define SQLITEDEFERRABLE_H

#include "coreSQLiteStudio_global.h"
#include <QString>

enum class SqliteDeferrable
{
    null,
    NOT_DEFERRABLE,
    DEFERRABLE
};

enum class SqliteInitially
{
    null,
    DEFERRED,
    IMMEDIATE
};

API_EXPORT QString sqliteDeferrable(SqliteDeferrable deferrable);
API_EXPORT SqliteDeferrable sqliteDeferrable(const QString& deferrable);

API_EXPORT QString sqliteInitially(SqliteInitially initially);
API_EXPORT SqliteInitially sqliteInitially(const QString& initially);

#endif // SQLITEDEFERRABLE_H