aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/parser/ast/sqlitenulls.h
blob: 3553eaee59ce9bf8e974d41b28e889b931a03e0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SQLITENULLS_H
#define SQLITENULLS_H

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

enum class SqliteNulls
{
    FIRST,
    LAST,
    null
};

API_EXPORT SqliteNulls sqliteNulls(const QString& value);
API_EXPORT QString sqliteNulls(SqliteNulls value);

#endif // SQLITENULLS_H