From 491c63a39e6e568c63002a3f98e994dcc1a66c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Micha=C3=ABl=20Celerier?= Date: Sun, 14 Apr 2024 17:38:15 -0400 Subject: [PATCH] [mappings] Add missing metadata on an example --- examples/Raw/Interpolator.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/examples/Raw/Interpolator.hpp b/examples/Raw/Interpolator.hpp index 17467926..78b2e876 100644 --- a/examples/Raw/Interpolator.hpp +++ b/examples/Raw/Interpolator.hpp @@ -2,16 +2,15 @@ /* SPDX-License-Identifier: GPL-3.0-or-later */ -#include -#include -#include - namespace examples { struct ExponentialSmoothing { static constexpr auto name() { return "Exponential Smoothing"; } static constexpr auto c_name() { return "avnd_expsmooth"; } + static constexpr auto author() { return "Jean-Michaƫl Celerier"; } + static constexpr auto category() { return "Control/Mappings"; } + static constexpr auto description() { return "Simplest real-time value smoothing"; } static constexpr auto uuid() { return "971739ae-14a3-4283-b0a0-96dbd367ce66"; } struct