|
| 1 | +# Google Cloud C++ Client Libraries |
| 2 | + |
| 3 | +[![Documentation][doxygen-shield]][doxygen-link] |
| 4 | + |
| 5 | +[doxygen-shield]: https://img.shields.io/badge/documentation-master-brightgreen.svg |
| 6 | +[doxygen-link]: http://GoogleCloudPlatform.github.io/google-cloud-cpp/ |
| 7 | +[quickstart-link]: http://GoogleCloudPlatform.github.io/google-cloud-cpp/ |
| 8 | + |
| 9 | +This directory contains the following C++ client libraries: |
| 10 | + |
| 11 | +* [Cloud Bigtable](bigtable/README.md) |
| 12 | +* [Google Cloud Storage](storage/README.md) |
| 13 | + |
| 14 | +In addition some utilities shared across these libraries are also found here. |
| 15 | +Most of these utilities are in the `google::cloud::internal` namespace, and are |
| 16 | +not intended for direct use by consumers of the C++ client libraries. |
| 17 | + |
| 18 | +## Documentation |
| 19 | + |
| 20 | +Documentation for the common utilities is |
| 21 | +is available [online][doxygen-link]. |
| 22 | + |
| 23 | +## Release Notes |
| 24 | + |
| 25 | +### 2018-11 |
| 26 | + |
| 27 | +* `google::cloud::optional<T>` an intentionally incomplete implementation of |
| 28 | + `std::optional<T>` to support C++11 and C++14 users. |
| 29 | +* Applications can configure `google::cloud::LogSink` to enable logging in some |
| 30 | + of the libraries and to redirect the logs to their preferred destination. |
| 31 | + The libraries do not enable any logging by default, not even to `stderr`. |
| 32 | +* `google::cloud::SetTerminateHandler()` allows applications compiled without |
| 33 | + exceptions, but using the APIs that rely on exceptions to report errors, to |
| 34 | + configure how the application terminates when an unrecoverable error is |
| 35 | + detected by the libraries. |
0 commit comments