init
This commit is contained in:
26
device/sqllite/mysqlite.h
Normal file
26
device/sqllite/mysqlite.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef MYSQLITE_H
|
||||
#define MYSQLITE_H
|
||||
|
||||
#include "MySQLite_global.h"
|
||||
#include <QCoreApplication>
|
||||
#include <QSqlDatabase>
|
||||
#include <QSqlQuery>
|
||||
#include <QVariant>
|
||||
#include <QDateTime>
|
||||
#include <QtDebug>
|
||||
|
||||
|
||||
class MYSQLITE_EXPORT MySQLite
|
||||
{
|
||||
public:
|
||||
MySQLite();
|
||||
|
||||
private:
|
||||
QSqlDatabase db;
|
||||
|
||||
public:
|
||||
int InitMySQLite();
|
||||
QString GetMarkTitle(QString);
|
||||
};
|
||||
|
||||
#endif // MYSQLITE_H
|
||||
Reference in New Issue
Block a user