2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-29 04:57:52 +00:00

[4234] Fixed stats_mgr.h

This commit is contained in:
Francis Dupont 2015-12-12 00:06:37 +01:00
parent 620c903a5c
commit e5774e21ed

View File

@ -367,6 +367,8 @@ class StatsMgr : public boost::noncopyable {
}
}
/// @public
/// @brief Adds specified value to a given statistic (internal version).
///
/// This template method adds specified value to a given statistic (identified
@ -395,12 +397,14 @@ class StatsMgr : public boost::noncopyable {
}
}
/// @public
/// @brief Adds a new observation.
///
/// That's an utility method used by public @ref setValue() and
/// @ref addValue() methods.
/// @param obs observation
void addObservation(const ObservationPtr& o);
/// @param stat observation
void addObservation(const ObservationPtr& stat);
/// @private