File indexing completed on 2024-12-08 07:25:58
0001 /* 0002 SPDX-FileCopyrightText: 1998-2007 Sebastian Trueg <trueg@k3b.org> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 0006 #ifndef _K3B_EXCEPTIONS_H_ 0007 #define _K3B_EXCEPTIONS_H_ 0008 0009 namespace K3b { 0010 namespace Device { 0011 class Device; 0012 } 0013 0014 class Exceptions 0015 { 0016 public: 0017 /** 0018 * Returns true if the drive's firmware produces broken 0019 * Audio CDs with zero length pregaps. 0020 * 0021 * It simply uses a compiled in table. 0022 */ 0023 static bool brokenDaoAudio( Device::Device* ); 0024 }; 0025 } 0026 0027 #endif