blob: 4849504e4407f009dfbc717625e24dfbd25253e5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef DBSQLITEWX_H
#define DBSQLITEWX_H
#include "plugins/genericplugin.h"
#include "plugins/dbpluginstdfilebase.h"
#include <QObject>
class DbSqliteSystemData : public GenericPlugin, public DbPluginStdFileBase
{
Q_OBJECT
SQLITESTUDIO_PLUGIN("dbsqlitesystemdata.json")
public:
DbSqliteSystemData();
QString getLabel() const;
QList<DbPluginOption> getOptionsList() const;
bool checkIfDbServedByPlugin(Db *db) const;
static_char* PASSWORD_OPT = "password";
protected:
Db *newInstance(const QString &name, const QString &path, const QHash<QString, QVariant> &options);
};
#endif // DBSQLITEWX_H
|