mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-21 11:20:49 +08:00
15 lines
157 B
C++
15 lines
157 B
C++
#ifndef DB_H
|
|
#define DB_H
|
|
#include <QSqlQuery>
|
|
|
|
class db
|
|
{
|
|
public:
|
|
db();
|
|
QSqlQuery myQuery;
|
|
void query(QString queryString);
|
|
|
|
};
|
|
|
|
#endif // DB_H
|