You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
377B

  1. #pragma once
  2. #include <common.hpp>
  3. #include <engine/Port.hpp>
  4. namespace rack {
  5. namespace engine {
  6. struct PortInfo {
  7. /** The name of the port, using sentence capitalization.
  8. e.g. "Sine", "Pitch input", "Mode CV"
  9. */
  10. std::string label;
  11. /** An optional one-sentence description of the parameter. */
  12. std::string description;
  13. };
  14. } // namespace engine
  15. } // namespace rack