Sayonara Player
MTP_Device.h
1 
2 /* Copyright (C) 2011-2017 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 #ifndef MTP_DEVICE_H
21 #define MTP_DEVICE_H
22 
23 #include "MTP_Typedefs.h"
24 
29 class MTP_Device
30 {
31 public:
32  explicit MTP_Device(MTPIntern_Device* device);
33  virtual ~MTP_Device();
34 
35  quint32 id() const;
36  QList<MTP_StoragePtr> storages();
37 
38  static QList<MTP_DevicePtr> get_all_connected_devices();
39 
40 
41 private:
42  MTPIntern_Device* _device=nullptr;
43  QList<MTP_StoragePtr> _storages;
44 
45  bool _valid;
46  quint32 _id;
47  QString _default_album_dir;
48  QString _default_playlist_dir;
49  QString _default_music_dir;
50  QString _friendly_name;
51 };
52 
53 #endif // MTP_DEVICE_H
The MTP_Device class.
Definition: MTP_Device.h:29
LIBMTP_mtpdevice_t MTPIntern_Device
MTPIntern_Device.
Definition: MTP_Typedefs.h:60