comparison plugin/RealTimePluginInstance.cpp @ 0:fc9323a41f5a

start base : Sonic Visualiser sv1-1.0rc1
author lbajardsilogic
date Fri, 11 May 2007 09:08:14 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:fc9323a41f5a
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 Sonic Visualiser
5 An audio file viewer and annotation editor.
6 Centre for Digital Music, Queen Mary, University of London.
7
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version. See the file
12 COPYING included with this distribution for more information.
13 */
14
15 /*
16 This is a modified version of a source file from the
17 Rosegarden MIDI and audio sequencer and notation editor.
18 This file copyright 2000-2006 Chris Cannam.
19 */
20
21 #include "RealTimePluginInstance.h"
22 #include "RealTimePluginFactory.h"
23
24 #include "PluginIdentifier.h"
25
26 #include <iostream>
27
28
29 RealTimePluginInstance::~RealTimePluginInstance()
30 {
31 // std::cerr << "RealTimePluginInstance::~RealTimePluginInstance" << std::endl;
32
33 if (m_factory) {
34 // std::cerr << "Asking factory to release " << m_identifier.toStdString() << std::endl;
35
36 m_factory->releasePlugin(this, m_identifier);
37 }
38 }
39