annotate data/fileio/test/UnsupportedFormat.h @ 1773:fadd9f8aaa27

This output is too annoying, in the perfectly innocuous case of reading from an aggregate model whose components are different lengths
author Chris Cannam
date Wed, 14 Aug 2019 13:54:23 +0100
parents 35d08f4274b9
children
rev   line source
Chris@1698 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@1698 2
Chris@1698 3 /*
Chris@1698 4 Sonic Visualiser
Chris@1698 5 An audio file viewer and annotation editor.
Chris@1698 6 Centre for Digital Music, Queen Mary, University of London.
Chris@1698 7
Chris@1698 8 This program is free software; you can redistribute it and/or
Chris@1698 9 modify it under the terms of the GNU General Public License as
Chris@1698 10 published by the Free Software Foundation; either version 2 of the
Chris@1698 11 License, or (at your option) any later version. See the file
Chris@1698 12 COPYING included with this distribution for more information.
Chris@1698 13 */
Chris@1698 14
Chris@1698 15 #ifndef SV_UNSUPPORTED_FORMAT_H
Chris@1698 16 #define SV_UNSUPPORTED_FORMAT_H
Chris@1698 17
Chris@1714 18 #include <QString>
Chris@1698 19
Chris@1714 20 struct UnsupportedFormat {
Chris@1714 21
Chris@1714 22 static bool isLegitimatelyUnsupported(QString format);
Chris@1714 23
Chris@1714 24 };
Chris@1698 25
Chris@1698 26 #endif