This commit is contained in:
Victor Vazquez 2021-02-08 17:13:30 -08:00 committed by GitHub
parent 4d3ecf39e7
commit 1f849ec384
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 4 deletions

View File

@ -25,9 +25,8 @@ function(generate_documentation PROJECT_NAME PROJECT_VERSION)
test
*private*)
# Skip documenting Details symbols (all from ::Details namespace)
set(DOXYGEN_EXCLUDE_SYMBOLS Details)
set(DOXYGEN_EXCLUDE_SYMBOLS Details Internal)
set(DOXYGEN_IGNORE_PREFIX az_ AZ_)
set(DOXYGEN_)
set(DOXYGEN_HTML_HEADER ${CMAKE_SOURCE_DIR}/eng/docs/api/assets/header.html)
set(DOXYGEN_HTML_FOOTER ${CMAKE_SOURCE_DIR}/eng/docs/api/assets/footer.html)
set(DOXYGEN_HTML_STYLESHEET ${CMAKE_SOURCE_DIR}/eng/docs/api/assets/style.css)

View File

@ -19,7 +19,8 @@
namespace Azure { namespace Core {
/**
* @ A base abstract class for the `std::unique_ptr` value representation in #ContextValue.
* @brief A base abstract class for the `std::unique_ptr` value representation in #ContextValue.
*
*/
struct ValueBase
{

View File

@ -73,7 +73,10 @@ namespace Azure { namespace Core { namespace Http {
HttpPolicy& operator=(const HttpPolicy& other) = default;
};
// Represents the next HTTP policy in the stack sequence of policies.
/**
* @brief Represents the next HTTP policy in the stack sequence of policies.
*
*/
class NextHttpPolicy {
const std::size_t m_index;
const std::vector<std::unique_ptr<HttpPolicy>>& m_policies;

View File

@ -2,6 +2,7 @@
// SPDX-License-Identifier: MIT
/**
* @file
* @brief #HttpTransport implementation via WinHttp.
*/

View File

@ -2,6 +2,7 @@
// SPDX-License-Identifier: MIT
/**
* @file
* @brief Internal interface for serializable classes.
*
*/

View File

@ -2,6 +2,7 @@
// SPDX-License-Identifier: MIT
/**
* @file
* @brief Internal utility functions for strings.
*
*/