SoundBand/sync/mysql.h

21 lines
245 B
C
Raw Normal View History

2017-12-24 00:20:53 +03:00
#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