summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/database_holder.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-01-13 14:58:50 -0500
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2015-01-15 10:41:43 -0500
commit02a78a7f3d936813ea9e4195887b11d83448fcd6 (patch)
tree225019d9b28e394dfe141a3bb5a50217f8ee50ef /src/mongo/db/catalog/database_holder.h
parentd3ed3fad57e35f2459660c05b37e3b0509e45e5c (diff)
downloadmongo-02a78a7f3d936813ea9e4195887b11d83448fcd6.tar.gz
SERVER-16431 Simplify DB profile code
Diffstat (limited to 'src/mongo/db/catalog/database_holder.h')
-rw-r--r--src/mongo/db/catalog/database_holder.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mongo/db/catalog/database_holder.h b/src/mongo/db/catalog/database_holder.h
index dd3afdf2470..6ad69c5bef2 100644
--- a/src/mongo/db/catalog/database_holder.h
+++ b/src/mongo/db/catalog/database_holder.h
@@ -28,13 +28,17 @@
#pragma once
+#include <set>
+
#include "mongo/base/string_data.h"
-#include "mongo/db/catalog/database.h"
#include "mongo/db/namespace_string.h"
+#include "mongo/util/concurrency/mutex.h"
#include "mongo/util/string_map.h"
namespace mongo {
+ class Database;
+
/**
* Registry of opened databases.
*/