Skip to content

Commit

Permalink
examples: add some missing metadatas
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jan 4, 2025
1 parent 36ea859 commit bc81cfd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions examples/Raw/ProcessLauncher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
9 changes: 9 additions & 0 deletions examples/Raw/Shell.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bc81cfd

Please sign in to comment.