Chris@320: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@320: Chris@320: /* Chris@320: Sonic Visualiser Chris@320: An audio file viewer and annotation editor. Chris@320: Centre for Digital Music, Queen Mary, University of London. Chris@320: This file copyright 2006 Chris Cannam. Chris@320: Chris@320: This program is free software; you can redistribute it and/or Chris@320: modify it under the terms of the GNU General Public License as Chris@320: published by the Free Software Foundation; either version 2 of the Chris@320: License, or (at your option) any later version. See the file Chris@320: COPYING included with this distribution for more information. Chris@320: */ Chris@320: Chris@331: #include "ModelTransformer.h" Chris@320: Chris@350: ModelTransformer::ModelTransformer(Input input, const Transform &transform) : Chris@350: m_transform(transform), Chris@350: m_input(input), Chris@320: m_output(0), Chris@320: m_detached(false), Chris@320: m_abandoned(false) Chris@320: { Chris@320: } Chris@320: Chris@331: ModelTransformer::~ModelTransformer() Chris@320: { Chris@320: m_abandoned = true; Chris@320: wait(); Chris@320: if (!m_detached) delete m_output; Chris@320: } Chris@320: