mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-05-14 17:32:07 +02:00
20 lines
382 B
C++
20 lines
382 B
C++
#ifndef SQLITE3_DATABASE_H
|
|
#define SQLITE3_DATABASE_H
|
|
|
|
#include "../database/database_single_threaded.h"
|
|
|
|
class SQLite3Database : public DatabaseSingleThreaded {
|
|
GDCLASS(SQLite3Database, DatabaseSingleThreaded);
|
|
|
|
public:
|
|
virtual StringName get_backend_name() const;
|
|
|
|
SQLite3Database();
|
|
~SQLite3Database();
|
|
|
|
protected:
|
|
Ref<DatabaseConnection> _allocate_connection();
|
|
};
|
|
|
|
#endif
|