plugins/score-plugin-nodal/Nodal/Metadata.hpp
1 #pragma once
2 #include <Process/ProcessMetadata.hpp>
3 
4 namespace Nodal
5 {
6 class Model;
7 }
8 
9 PROCESS_METADATA(
10  , Nodal::Model, "f5678806-c431-45c5-ae3a-fae5183380fb",
11  "Nodal", // Internal name
12  "Nodal", // Pretty name
13  Process::ProcessCategory::Structure, // Category
14  "Structure", // Category
15  "Organise processes in a node-based editor", // Description
16  "ossia score", // Author
17  (QStringList{}), // Tags
18  {}, // Inputs
19  {}, // Outputs
20  Process::ProcessFlags::SupportsTemporal | Process::ProcessFlags::PutInNewSlot)
Definition: score-plugin-nodal/Nodal/Process.hpp:14