WIP: remove the old database abstraction layer
remove such classes: - DbBase - DbConn - DbTextStream - Db while here: - remove: TextStream, SLog, TexTextStream
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 2021, Tomasz Sowa
|
||||
* Copyright (c) 2021-2024, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
@@ -49,7 +49,6 @@ class Dirs;
|
||||
class Mounts;
|
||||
class Users;
|
||||
class Groups;
|
||||
class SLog;
|
||||
class Session;
|
||||
class User;
|
||||
class Locale;
|
||||
@@ -69,7 +68,6 @@ public:
|
||||
Mounts * get_mounts();
|
||||
Users * get_users();
|
||||
Groups * get_groups();
|
||||
SLog * get_session_logger(); // FIXME always return null at the moment, should be set when a new request is created and clear at the end of a request
|
||||
Session * get_session();
|
||||
User * get_current_user();
|
||||
Locale * get_locale();
|
||||
@@ -84,7 +82,6 @@ public:
|
||||
const Mounts * get_mounts() const;
|
||||
const Users * get_users() const;
|
||||
const Groups * get_groups() const;
|
||||
const SLog * get_session_logger() const; // FIXME always return null at the moment, should be set when a new request is created and clear at the end of a request
|
||||
const Session * get_session() const;
|
||||
const User * get_current_user() const;
|
||||
const Locale * get_locale() const;
|
||||
|
Reference in New Issue
Block a user