summaryrefslogtreecommitdiff
path: root/src/audioextractor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/audioextractor.h')
-rw-r--r--src/audioextractor.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/audioextractor.h b/src/audioextractor.h
index a38f706..35eb5ba 100644
--- a/src/audioextractor.h
+++ b/src/audioextractor.h
@@ -37,24 +37,15 @@
class Instrument;
-typedef QLinkedList< QPair<QString, QString> > AudioFileList;
-
class AudioExtractor
: public QObject
{
Q_OBJECT
public:
- AudioExtractor(Instrument& instrument, Selections& selections,
- QObject* parent);
+ AudioExtractor(Instrument& instrument, QObject* parent);
public slots:
- void addFile(QString file, QString name);
- void changeName(QString file, QString name);
- void removeFile(QString file, QString name);
-
void exportSelections();
- void setExportPath(const QString& path);
- void setOutputPrefix(const QString& prefix);
signals:
void progressUpdate(int value);
@@ -62,8 +53,4 @@ signals:
private:
Instrument& instrument;
- Selections& selections;
- AudioFileList audiofiles;
- QString exportpath;
- QString prefix;
};