Chris@0: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@0: Chris@0: /* Chris@0: Sonic Annotator Chris@0: A utility for batch feature extraction from audio files. Chris@0: Mark Levy, Chris Sutton and Chris Cannam, Queen Mary, University of London. Chris@0: Copyright 2007-2008 QMUL. Chris@0: Chris@0: This program is free software; you can redistribute it and/or Chris@0: modify it under the terms of the GNU General Public License as Chris@0: published by the Free Software Foundation; either version 2 of the Chris@0: License, or (at your option) any later version. See the file Chris@0: COPYING included with this distribution for more information. Chris@0: */ Chris@0: Chris@0: Chris@0: #ifndef _FEATURE_WRITER_FACTORY_H_ Chris@0: #define _FEATURE_WRITER_FACTORY_H_ Chris@0: Chris@0: #include Chris@0: #include Chris@0: Chris@0: using std::set; Chris@0: using std::string; Chris@0: Chris@0: class FeatureWriter; Chris@0: Chris@0: class FeatureWriterFactory Chris@0: { Chris@0: public: Chris@0: static set getWriterTags(); Chris@0: static FeatureWriter *createWriter(string tag); Chris@0: }; Chris@0: Chris@0: Chris@0: #endif