mirror of
https://github.com/QuasarApp/SoundBand.git
synced 2025-04-30 01:04:32 +00:00
21 lines
245 B
C
21 lines
245 B
C
|
#ifndef MYSQL_H
|
||
|
#define MYSQL_H
|
||
|
#include <QString>
|
||
|
|
||
|
|
||
|
class QSqlDatabase;
|
||
|
class QSqlQuery;
|
||
|
|
||
|
namespace syncLib {
|
||
|
|
||
|
|
||
|
class MySql
|
||
|
{
|
||
|
public:
|
||
|
MySql();
|
||
|
static bool exec(QSqlQuery *q, const QString& sqlFile);
|
||
|
~MySql();
|
||
|
};
|
||
|
}
|
||
|
#endif // MYSQL_H
|