Mercurial > hg > sonic-annotator
comparison runner/FeatureWriterFactory.h @ 1:92911f967a16
* some reorganisation
author | Chris Cannam |
---|---|
date | Thu, 11 Dec 2008 10:26:12 +0000 |
parents | FeatureWriterFactory.h@581b1b150a4d |
children |
comparison
equal
deleted
inserted
replaced
0:581b1b150a4d | 1:92911f967a16 |
---|---|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | |
2 | |
3 /* | |
4 Sonic Annotator | |
5 A utility for batch feature extraction from audio files. | |
6 Mark Levy, Chris Sutton and Chris Cannam, Queen Mary, University of London. | |
7 Copyright 2007-2008 QMUL. | |
8 | |
9 This program is free software; you can redistribute it and/or | |
10 modify it under the terms of the GNU General Public License as | |
11 published by the Free Software Foundation; either version 2 of the | |
12 License, or (at your option) any later version. See the file | |
13 COPYING included with this distribution for more information. | |
14 */ | |
15 | |
16 | |
17 #ifndef _FEATURE_WRITER_FACTORY_H_ | |
18 #define _FEATURE_WRITER_FACTORY_H_ | |
19 | |
20 #include <set> | |
21 #include <string> | |
22 | |
23 using std::set; | |
24 using std::string; | |
25 | |
26 class FeatureWriter; | |
27 | |
28 class FeatureWriterFactory | |
29 { | |
30 public: | |
31 static set<string> getWriterTags(); | |
32 static FeatureWriter *createWriter(string tag); | |
33 }; | |
34 | |
35 | |
36 #endif |