Mercurial > hg > svcore
comparison plugin/RealTimePluginInstance.cpp @ 0:da6937383da8
initial import
author | Chris Cannam |
---|---|
date | Tue, 10 Jan 2006 16:33:16 +0000 |
parents | |
children | d86891498eef |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:da6937383da8 |
---|---|
1 /* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */ | |
2 | |
3 /* | |
4 A waveform viewer and audio annotation editor. | |
5 Chris Cannam, Queen Mary University of London, 2005 | |
6 | |
7 This is experimental software. Not for distribution. | |
8 */ | |
9 | |
10 /* | |
11 This is a modified version of a source file from the | |
12 Rosegarden MIDI and audio sequencer and notation editor. | |
13 This file copyright 2000-2005 Chris Cannam. | |
14 */ | |
15 | |
16 #include "RealTimePluginInstance.h" | |
17 #include "RealTimePluginFactory.h" | |
18 | |
19 #include <iostream> | |
20 | |
21 | |
22 RealTimePluginInstance::~RealTimePluginInstance() | |
23 { | |
24 std::cerr << "RealTimePluginInstance::~RealTimePluginInstance" << std::endl; | |
25 | |
26 if (m_factory) { | |
27 std::cerr << "Asking factory to release " << m_identifier.toStdString() << std::endl; | |
28 | |
29 m_factory->releasePlugin(this, m_identifier); | |
30 } | |
31 } | |
32 | |
33 |