Chris@96: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@96: Chris@96: /* Chris@96: Sonic Visualiser Chris@96: An audio file viewer and annotation editor. Chris@96: Centre for Digital Music, Queen Mary, University of London. Chris@96: This file copyright 2006 Chris Cannam. Chris@96: Chris@96: This program is free software; you can redistribute it and/or Chris@96: modify it under the terms of the GNU General Public License as Chris@96: published by the Free Software Foundation; either version 2 of the Chris@96: License, or (at your option) any later version. See the file Chris@96: COPYING included with this distribution for more information. Chris@96: */ Chris@96: Chris@96: #ifndef _NON_RT_THREAD_H_ Chris@96: #define _NON_RT_THREAD_H_ Chris@96: Chris@96: #include Chris@96: Chris@96: class NonRTThread : public QThread Chris@96: { Chris@96: Q_OBJECT Chris@96: Chris@96: public: Chris@96: NonRTThread(QObject *parent = 0); Chris@96: Chris@96: public slots: Chris@96: void start(); Chris@96: }; Chris@96: Chris@96: #endif