2019-04-06 11:28:56 +00:00
|
|
|
// Copyright 2019, Collabora, Ltd.
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
/*!
|
|
|
|
* @file
|
|
|
|
* @brief Header with just documentation.
|
|
|
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
|
|
|
* @ingroup aux_util
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @defgroup aux Auxiliary
|
|
|
|
* @ingroup xrt
|
|
|
|
*
|
|
|
|
* @brief Shared code and helpers for Monado.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @defgroup aux_util Utilities
|
|
|
|
* @ingroup aux
|
|
|
|
*
|
|
|
|
* @brief Smaller pieces of auxiliary utilities code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
2020-11-09 23:21:57 +00:00
|
|
|
* @dir src/xrt/auxiliary
|
2019-04-06 11:29:47 +00:00
|
|
|
* @ingroup xrt
|
2019-04-06 11:28:56 +00:00
|
|
|
*
|
|
|
|
* @brief Shared code and helpers for Monado.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2020-11-09 23:21:57 +00:00
|
|
|
* @dir src/xrt/auxiliary/util
|
2019-04-06 11:28:56 +00:00
|
|
|
* @ingroup aux
|
|
|
|
*
|
|
|
|
* @brief Smaller pieces of auxiliary utilities code.
|
|
|
|
*/
|
2021-04-30 21:58:04 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
/*!
|
|
|
|
* @brief C++-only APIs in Monado.
|
|
|
|
*
|
|
|
|
* There are not very many of them.
|
|
|
|
*/
|
|
|
|
namespace xrt {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief C++-only functionality from assorted helper libraries
|
|
|
|
*/
|
|
|
|
namespace auxiliary {
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief C++-only functionality from the miscellaneous "util" helper library
|
|
|
|
*/
|
|
|
|
namespace util {
|
|
|
|
|
|
|
|
} // namespace util
|
|
|
|
|
|
|
|
} // namespace auxiliary
|
|
|
|
|
|
|
|
} // namespace xrt
|
|
|
|
|
|
|
|
#endif
|