Your IP : 216.73.216.48


Current Path : /usr/X11R6/include/
Upload File :
Current File : //usr/X11R6/include/k3bexceptions.h

/*
 *
 * Copyright (C) 2004 Sebastian Trueg <trueg@k3b.org>
 *
 * This file is part of the K3b project.
 * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * See the file "COPYING" for the exact licensing terms.
 */

#ifndef _K3B_EXCEPTIONS_H_
#define _K3B_EXCEPTIONS_H_

namespace K3b {
    namespace Device {
        class Device;
    }

    class Exceptions
    {
    public:
        /**
         * Returns true if the drive's firmware produces broken
         * Audio CDs with zero length pregaps.
         *
         * It simply uses a compiled in table.
         */
        static bool brokenDaoAudio( Device::Device* );
    };
}

#endif