aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/bdb.h
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2023-07-06 19:12:28 +0000
committerCory Fields <cory-nospam-@coryfields.com>2023-07-07 14:14:20 +0000
commit8b5397c00e821d7eaab22f512e9d71a1a0392ebf (patch)
treea70c0877320788f33206421dfe285b99354994af /src/wallet/bdb.h
parent6e010626af7ed51f1748323ece2f46335e145f2f (diff)
downloadbitcoin-8b5397c00e821d7eaab22f512e9d71a1a0392ebf.tar.xz
wallet: bdb: include bdb header from our implementation files only
This way the dependency can't sneak into other files without being noticed. Forward-declare bdb classes as necessary.
Diffstat (limited to 'src/wallet/bdb.h')
-rw-r--r--src/wallet/bdb.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/wallet/bdb.h b/src/wallet/bdb.h
index f9b0b7601d..630630ebe0 100644
--- a/src/wallet/bdb.h
+++ b/src/wallet/bdb.h
@@ -21,10 +21,13 @@
#include <unordered_map>
#include <vector>
-#include <db_cxx.h>
-
struct bilingual_str;
+class DbEnv;
+class DbTxn;
+class Db;
+class Dbc;
+
// This constant was introduced in BDB 4.0.14 and has never changed, but there
// is a belt-and-suspenders check in the cpp file just in case.
#define BDB_DB_FILE_ID_LEN 20 /* Unique file ID length. */