From bc81cfd32632ceb0ebef83ac8e994e45743ac470 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Micha=C3=ABl=20Celerier?= Date: Sat, 4 Jan 2025 17:04:51 -0500 Subject: [PATCH] examples: add some missing metadatas --- examples/Raw/ProcessLauncher.hpp | 9 +++++++++ examples/Raw/Shell.hpp | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/examples/Raw/ProcessLauncher.hpp b/examples/Raw/ProcessLauncher.hpp index b7e6266f..c03e6494 100644 --- a/examples/Raw/ProcessLauncher.hpp +++ b/examples/Raw/ProcessLauncher.hpp @@ -17,6 +17,15 @@ struct ProcessLauncher static consteval auto c_name() { return "avnd_process"; } static consteval auto category() { return "Script"; } static consteval auto uuid() { return "ac3afbbb-cbe0-4559-ac14-51250024b458"; } + static consteval auto description() + { + return "Launch and manage an external process for the lifetime of this object"; + } + static consteval auto manual_url() + { + return "https://ossia.io/score-docs/processes/process-launcher.html"; + } + static consteval auto author() { return "Jean-Michaël Celerier"; } // This tag is an indication that the node will have start / stop methods called when // the execution starts or stop. Only relevant in systems with such an ability, diff --git a/examples/Raw/Shell.hpp b/examples/Raw/Shell.hpp index 64000c9b..7818b356 100644 --- a/examples/Raw/Shell.hpp +++ b/examples/Raw/Shell.hpp @@ -13,6 +13,15 @@ struct Shell static consteval auto c_name() { return "avnd_shell"; } static consteval auto category() { return "Script"; } static consteval auto uuid() { return "7e4ae744-1825-4f1c-9fc9-675e41f316bc"; } + static consteval auto description() + { + return "Launch a shell command detached from the host"; + } + static consteval auto manual_url() + { + return "https://ossia.io/score-docs/processes/process-launcher.html#shell-command"; + } + static consteval auto author() { return "Jean-Michaël Celerier"; } // This tag is an indication that the operator() should only called on // the first tick, not on every tick