Mercurial > hg > svcore
comparison plugin/RealTimePluginInstance.cpp @ 237:3a6af0e5e2d1
* Update along with latest Vamp API change. This has not yet been tested.
author | Chris Cannam |
---|---|
date | Mon, 26 Feb 2007 18:13:07 +0000 |
parents | c30728d5625c |
children | 71f869dac40b |
comparison
equal
deleted
inserted
replaced
236:3e6fee4e4257 | 237:3a6af0e5e2d1 |
---|---|
19 */ | 19 */ |
20 | 20 |
21 #include "RealTimePluginInstance.h" | 21 #include "RealTimePluginInstance.h" |
22 #include "RealTimePluginFactory.h" | 22 #include "RealTimePluginFactory.h" |
23 | 23 |
24 #include "PluginIdentifier.h" | |
25 | |
24 #include <iostream> | 26 #include <iostream> |
25 | 27 |
26 | 28 |
27 RealTimePluginInstance::~RealTimePluginInstance() | 29 RealTimePluginInstance::~RealTimePluginInstance() |
28 { | 30 { |
33 | 35 |
34 m_factory->releasePlugin(this, m_identifier); | 36 m_factory->releasePlugin(this, m_identifier); |
35 } | 37 } |
36 } | 38 } |
37 | 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 |