1 /****************************************************************************************
2  * Copyright (C) 2008 Alejandro Wainzinger <aikawarazuni@gmail.com>
3  *                                                                                      *
4  * This program is free software; you can redistribute it and/or modify it under        *
5  * the terms of the GNU General Public License as published by the Free Software        *
6  * Foundation; either version 2 of the License, or (at your option) any later           *
7  * version.                                                                             *
8  *                                                                                      *
9  * This program is distributed in the hope that it will be useful, but WITHOUT ANY      *
10  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A      *
11  * PARTICULAR PURPOSE. See the GNU General Public License for more details.             *
12  *                                                                                      *
13  * You should have received a copy of the GNU General Public License along with         *
14  * this program.  If not, see <http://www.gnu.org/licenses/>.                           *
15  ****************************************************************************************/
16 
17 #include "AudioCdDeviceInfo.h"
18 #include "MediaDeviceInfo.h"
19 
AudioCdDeviceInfo(const QString & device,const QString & udi)20 AudioCdDeviceInfo::AudioCdDeviceInfo( const QString &device, const QString &udi )
21 : MediaDeviceInfo(),
22 m_device( device )
23 {
24     m_udi = udi;
25 }
26 
~AudioCdDeviceInfo()27 AudioCdDeviceInfo::~AudioCdDeviceInfo()
28 {
29 }
30 
31 QString
device() const32 AudioCdDeviceInfo::device() const
33 {
34     return m_device;
35 }
36 
37