16 lines
333 B
C++
16 lines
333 B
C++
#include <seafire/routing/diagnostics.hxx>
|
|
|
|
namespace seafire::routing
|
|
{
|
|
|
|
/// Returns a reference to the routing diagnostic category.
|
|
///
|
|
common::diagnostics_t::category_t const&
|
|
routing_category()
|
|
{
|
|
static common::diagnostics_t::category_t category{"router"};
|
|
return category;
|
|
}
|
|
|
|
} // namespace seafire::routing
|