Torc  0.1
torcsqlitedb.h
Go to the documentation of this file.
1 #ifndef TORCSQLITEDB_H
2 #define TORCSQLITEDB_H
3 
4 #include "torcdb.h"
5 
6 class TorcSQLiteDB : public TorcDB
7 {
8  public:
9  explicit TorcSQLiteDB(const QString &DatabaseName);
10 
11  protected:
12  bool InitDatabase(void) override;
13 };
14 
15 #endif // TORCSQLITEDB_H
TorcSQLiteDB(const QString &DatabaseName)
Base Sql database access class.
Definition: torcdb.h:11
bool InitDatabase(void) override
Create and/or open an SQLiteDatabase.
SQLite implementation of TorcDB.
Definition: torcsqlitedb.h:6