mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
26 lines
No EOL
372 B
C++
26 lines
No EOL
372 B
C++
#ifndef LIB_DATABASE_SESSION_H
|
|
#define LIB_DATABASE_SESSION_H
|
|
|
|
#include <sqlite3.h>
|
|
|
|
namespace lib::database
|
|
{
|
|
class Session
|
|
{
|
|
private:
|
|
|
|
int status;
|
|
|
|
char * error;
|
|
|
|
sqlite3 * connection;
|
|
|
|
public:
|
|
|
|
Session(
|
|
sqlite3 * connection
|
|
);
|
|
};
|
|
}
|
|
|
|
#endif // LIB_DATABASE_SESSION_H
|