VCV Rack API v2
Loading...
Searching...
No Matches
tag.hpp
Go to the documentation of this file.
1#pragma once
2#include <vector>
3
4#include <common.hpp>
5
6
7namespace rack {
9namespace tag {
10
11
18extern const std::vector<std::vector<std::string>> tagAliases;
19
20
26int findId(const std::string& tag);
27
29std::string getTag(int tagId);
30
31
32} // namespace tag
33} // namespace rack
int findId(const std::string &tag)
Searches for a tag ID.
const std::vector< std::vector< std::string > > tagAliases
List of tags and their aliases.
std::string getTag(int tagId)
Returns the main tag name by tag ID.
Root namespace for the Rack API.
Definition AudioDisplay.hpp:9