blob: 338053249e218ba7b1ae8c06052f17c2cd2e433e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef SQLITEEMPTYQUERY_H
#define SQLITEEMPTYQUERY_H
#include "sqlitequery.h"
class API_EXPORT SqliteEmptyQuery : public SqliteQuery
{
public:
SqliteEmptyQuery();
SqliteEmptyQuery(const SqliteEmptyQuery& other);
SqliteStatement* clone();
TokenList rebuildTokensFromContents();
};
typedef QSharedPointer<SqliteEmptyQuery> SqliteEmptyQueryPtr;
#endif // SQLITEEMPTYQUERY_H
|