specify namespace scope for doxygen

This commit is contained in:
scawful
2024-04-14 10:08:33 -05:00
parent 2aa9bce9ca
commit 5aae3bb1ef
3 changed files with 23 additions and 1 deletions

View File

@@ -14,8 +14,16 @@
namespace yaze {
namespace app {
/**
* @namespace yaze::app::core
* @brief Core application logic and utilities.
*/
namespace core {
/**
* @class ExperimentFlags
* @brief A class to manage experimental feature flags.
*/
class ExperimentFlags {
public:
struct Flags {
@@ -99,6 +107,11 @@ class ExperimentFlags {
static std::shared_ptr<Flags> flags_;
};
/**
* @class NotifyValue
* @brief A class to manage a value that can be modified and notify when it
* changes.
*/
template <typename T>
class NotifyValue {
public: