mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
ircd::db: Move database.h up from database/ dir; update README.
This commit is contained in:
parent
e491cf5694
commit
623a59e75e
3 changed files with 4 additions and 6 deletions
|
@ -1,7 +1,5 @@
|
|||
This directory contains lower-level interfaces which generally require including RocksDB
|
||||
for symbols which cannot be forward declared. These are used internally by `ircd/db.cc`
|
||||
and are not necessary for developers wishing to use `ircd::db`. The public interfaces
|
||||
to `ircd::db` are one directory up.
|
||||
for symbols which cannot be forward declared. These are mostly used internally by
|
||||
`ircd/db.cc` and are not necessary for developers wishing to use `ircd::db`.
|
||||
|
||||
The only essential public interface here in the standard include stack is `database.h`
|
||||
itself. Also note that `ircd::db::database` is typedef'ed to `ircd::database`.
|
||||
The public interfaces to `ircd::db` are one directory up.
|
||||
|
|
|
@ -48,7 +48,7 @@ namespace ircd::db
|
|||
#include "merge.h"
|
||||
#include "descriptor.h"
|
||||
#include "database/rocksdb.h"
|
||||
#include "database/database.h"
|
||||
#include "database.h"
|
||||
#include "database/snapshot.h"
|
||||
#include "database/sst.h"
|
||||
#include "database/wal.h"
|
||||
|
|
Loading…
Reference in a new issue