Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

Latest commit

 

History

History
35 lines (22 loc) · 1011 Bytes

README.md

File metadata and controls

35 lines (22 loc) · 1011 Bytes

Couchbase++ - C++ Wrappers for libcouchbase

This file contains header-only C++ wrappers for libcouchbase. It is a work in progress.

Requirements

  • libcouchbase
  • A C++11 compiler (Sorry, there is no legacy C++ version yet)

Building/Installing

Since this is a header-only library there is no need to install or build anything. All components are preprocessor headers which are compiled with your own source code.

There is a CMakeLists.txt included, mainly for building examples and tests.

Documentation

Documentation can be generated using Doxygen. To generate the documentation, do the following:

make -f doc/Makefile public

The documentation index will then be available in HTML form in doc/public/html/index.html.

Note that all documentation can also be accessed from within the headers.

Examples

There is an example.cpp file in the repository root.