mirror of
https://github.com/QuasarApp/SoundBand.git
synced 2025-05-20 19:09:33 +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
|