File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 2
2
# Project related configuration options
3
3
#---------------------------------------------------------------------------
4
4
DOXYFILE_ENCODING = UTF-8
5
- PROJECT_NAME = MongoDB
6
- PROJECT_NUMBER = 2.6.0-rc0
5
+ PROJECT_NAME = MongoDB C++ Driver
6
+ PROJECT_NUMBER = 0.0
7
7
OUTPUT_DIRECTORY = docs/doxygen
8
8
CREATE_SUBDIRS = NO
9
9
OUTPUT_LANGUAGE = English
@@ -31,7 +31,7 @@ QT_AUTOBRIEF = NO
31
31
MULTILINE_CPP_IS_BRIEF = NO
32
32
INHERIT_DOCS = YES
33
33
SEPARATE_MEMBER_PAGES = NO
34
- TAB_SIZE = 8
34
+ TAB_SIZE = 4
35
35
ALIASES =
36
36
OPTIMIZE_OUTPUT_FOR_C = NO
37
37
OPTIMIZE_OUTPUT_JAVA = NO
@@ -51,9 +51,6 @@ SYMBOL_CACHE_SIZE = 0
51
51
# Build related configuration options
52
52
#---------------------------------------------------------------------------
53
53
54
- # ***
55
- # ERH - this controls whether all classes in files are documented or just the ones with tags
56
- # ***
57
54
EXTRACT_ALL = NO
58
55
59
56
EXTRACT_PRIVATE = NO
@@ -313,4 +310,4 @@ DOT_CLEANUP = YES
313
310
#---------------------------------------------------------------------------
314
311
# Options related to the search engine
315
312
#---------------------------------------------------------------------------
316
- SEARCHENGINE = NO
313
+ SEARCHENGINE = YES
Original file line number Diff line number Diff line change
1
+ // @file init.h
2
+
1
3
/* Copyright 2013 10gen Inc.
2
4
*
3
5
* Licensed under the Apache License, Version 2.0 (the "License");
22
24
// library. The below functions are not defined in servers like mongos or mongod, which have
23
25
// their own initialization strategy.
24
26
27
+ /* *
28
+ * @namespace mongo
29
+ * @brief the main MongoDB namespace
30
+ */
25
31
namespace mongo {
32
+
33
+ /* *
34
+ * @namespace mongo::client
35
+ * @brief the MongoDB C++ driver namespace
36
+ */
26
37
namespace client {
27
38
28
39
const int kDefaultShutdownGracePeriodMillis = 250 ;
You can’t perform that action at this time.
0 commit comments