| 723 | } |
| 724 | |
| 725 | std::vector<std::string> AudioNode::paramNames() const |
| 726 | { |
| 727 | std::vector<std::string> ret; |
| 728 | for (auto & p : _params) |
| 729 | { |
| 730 | ret.push_back(p->name()); |
| 731 | } |
| 732 | return ret; |
| 733 | } |
| 734 | std::vector<std::string> AudioNode::paramShortNames() const |
| 735 | { |
| 736 | std::vector<std::string> ret; |