File: tutorial.h

package info (click to toggle)
libmongo-client 0.1.5-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,256 kB
  • sloc: ansic: 13,795; makefile: 297; perl: 137; sh: 41
file content (32 lines) | stat: -rw-r--r-- 1,113 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/** @page tutorial Tutorial
 *
 * These pages will attempt to guide one through the libmongo-client
 * library, starting from the basic BSON building blocks, through the
 * low level wire protocol API, until the highest level synchronous
 * API.
 *
 * The documentation assumes a reasonable amount of C knowledge, and
 * basic familiarity with MongoDB concepts.
 *
 * The example programs can be found in the @c docs/tut/examples
 * directory in the source tree, along with a Makefile. Would one want
 * to compile the examples, or modified versions of them by hand, then
 * the following command should work:
 *
 * @verbatim
$ cc $(pkg-config --cflags --libs libmongo-client) tut_bson_build.c -o tut_bson_build
@endverbatim
 *
 * Contents:
 *   - @subpage tut_bson
 *     - @ref tut_bson_build
 *     - @ref tut_bson_traverse
 *   - @subpage tut_mongo_sync
 *     - @ref tut_mongo_sync_connect
 *     - @ref tut_mongo_sync_insert
 *     - @ref tut_mongo_sync_query
 *     - @ref tut_mongo_sync_query_complex
 *     - @ref tut_mongo_sync_cmd_create
 *   - @subpage tut_hl_client
 *   - @subpage tut_json2bson
 */