Sayonara Player
MTP_Device.h
1 
2 /* Copyright (C) 2011-2016 Lucio Carreras
3  *
4  * This file is part of sayonara player
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10 
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15 
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 
21 
22 
23 #ifndef MTP_DEVICE_H
24 #define MTP_DEVICE_H
25 
26 #include "MTP_Typedefs.h"
27 
32 class MTP_Device {
33 
34 public:
36  virtual ~MTP_Device();
37 
38  quint32 id() const;
39  QString default_album_dir() const;
40  QString default_plaliyst_dir() const;
41  QString default_music_dir() const;
42  QString friendly_name() const;
43  QList<MTP_StoragePtr> storages();
44 
45  static QList<MTP_DevicePtr> get_all_connected_devices();
46 
47 
48 private:
49  MTPIntern_Device* _device=nullptr;
50  QList<MTP_StoragePtr> _storages;
51 
52  bool _valid;
53  quint32 _id;
54  QString _default_album_dir;
55  QString _default_playlist_dir;
56  QString _default_music_dir;
57  QString _friendly_name;
58 };
59 
60 
61 #endif // MTP_DEVICE_H
The MTP_Device class.
Definition: MTP_Device.h:32
LIBMTP_mtpdevice_t MTPIntern_Device
MTPIntern_Device.
Definition: MTP_Typedefs.h:63