mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
18 lines
335 B
C++
18 lines
335 B
C++
#ifndef SQLITE3_DATABASE_H
|
|
#define SQLITE3_DATABASE_H
|
|
|
|
#include "../database/database_single_threaded.h"
|
|
|
|
class SQLite3Database : public DatabaseSingleThreaded {
|
|
GDCLASS(SQLite3Database, DatabaseSingleThreaded);
|
|
|
|
public:
|
|
SQLite3Database();
|
|
~SQLite3Database();
|
|
|
|
protected:
|
|
Ref<DatabaseConnection> _allocate_connection();
|
|
};
|
|
|
|
#endif
|