Chris@1060: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@1060: Chris@1060: /* Chris@1060: Sonic Visualiser Chris@1060: An audio file viewer and annotation editor. Chris@1060: Centre for Digital Music, Queen Mary, University of London. Chris@1060: Chris@1060: This program is free software; you can redistribute it and/or Chris@1060: modify it under the terms of the GNU General Public License as Chris@1060: published by the Free Software Foundation; either version 2 of the Chris@1060: License, or (at your option) any later version. See the file Chris@1060: COPYING included with this distribution for more information. Chris@1060: */ Chris@1060: Chris@1060: #ifndef DATA_EXPORT_OPTIONS_H Chris@1060: #define DATA_EXPORT_OPTIONS_H Chris@1060: Chris@1060: enum DataExportOption Chris@1060: { Chris@1060: DataExportDefaults = 0x0, Chris@1060: DataExportFillGaps = 0x1, Chris@1060: DataExportOmitLevels = 0x2, Chris@1060: }; Chris@1060: Chris@1060: typedef int DataExportOptions; Chris@1060: Chris@1060: #endif