blob: 441a40dbd98cc8f3d61d7b5b1d8980e96d876ff3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: metrics.hh
// Description: Display debug information
#ifndef CLIENT_GUI_METRICS_HH
#define CLIENT_GUI_METRICS_HH
#pragma once
namespace metrics
{
void init(void);
void layout(void);
} // namespace metrics
#endif
|