Nut/__tests/auto/tst_phrases/generator.h

17 lines
333 B
C
Raw Normal View History

2023-02-20 22:54:33 +08:00
#ifndef GENERATOR_H
#define GENERATOR_H
#include <QtNut/sqlitegenerator.h>
class Generator : public Nut::SqliteGenerator
{
public:
Generator();
QString where(const Nut::ConditionalPhrase &where);
QString order(const Nut::PhraseList &order);
QString select(const Nut::PhraseList &select);
};
#endif // GENERATOR_H