Mercurial > hg > svcore
comparison plugin/RealTimePluginInstance.cpp @ 239:71f869dac40b
* Further fixes for Vamp API change, and update to support API versioning
* Add plugin, output and parameter descriptions to GUI
* Avoid squished panner in heads-up-display on pane when time-value or note
layer is on top
author | Chris Cannam |
---|---|
date | Tue, 27 Feb 2007 12:51:38 +0000 |
parents | 3a6af0e5e2d1 |
children | b4a8d8221eaf |
comparison
equal
deleted
inserted
replaced
238:76635085e2d9 | 239:71f869dac40b |
---|---|
35 | 35 |
36 m_factory->releasePlugin(this, m_identifier); | 36 m_factory->releasePlugin(this, m_identifier); |
37 } | 37 } |
38 } | 38 } |
39 | 39 |
40 std::string | |
41 RealTimePluginInstance::getIdentifier() const | |
42 { | |
43 QString plid = getPluginIdentifier(); | |
44 QString type, soname, label; | |
45 PluginIdentifier::parseIdentifier(plid, type, soname, label); | |
46 return label.toStdString(); | |
47 } | |
48 |