forked from Sepanta/console-emulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
301 B
19 lines
301 B
#ifndef DATABASEMANAGER_H
|
|
#define DATABASEMANAGER_H
|
|
|
|
#include <QSqlDatabase>
|
|
#include <QDebug>
|
|
|
|
class DatabaseManager
|
|
{
|
|
private:
|
|
QSqlDatabase _db;
|
|
|
|
public:
|
|
DatabaseManager(const QString& databasePath);
|
|
~DatabaseManager();
|
|
|
|
QList<QVariant> getProbeIds();
|
|
};
|
|
|
|
#endif //DATABASEMANAGER_H
|
|
|