16 lines
268 B
C
16 lines
268 B
C
|
|
#ifndef SQLITEGENERATOR_H
|
||
|
|
#define SQLITEGENERATOR_H
|
||
|
|
|
||
|
|
#include <QtCore/qglobal.h>
|
||
|
|
#include "sqlgeneratorbase_p.h"
|
||
|
|
|
||
|
|
class SqliteGenerator : public SqlGeneratorBase
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SqliteGenerator();
|
||
|
|
|
||
|
|
QString getColumnDef(Field *field);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // SQLITEGENERATOR_H
|