Sayonara Player
MTP_File.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_FILE_H
24 #define MTP_FILE_H
25 
26 #include "MTP_Typedefs.h"
27 
32 class MTP_File {
33 
34 private:
35  quint32 _id;
36  QString _filename;
37 
38  MTPIntern_File* _file=nullptr;
39  MTPIntern_Device* _device=nullptr;
40 
41 
42 public:
43 
45  virtual ~MTP_File();
46 
47  quint32 id() const;
48  QString filename() const;
49  bool remove() const;
50 
51  bool operator==(const MTP_File& other) const;
52 
53 };
54 
55 
56 #endif // MTP_FILE_H
The MTP_File class.
Definition: MTP_File.h:32
LIBMTP_file_t MTPIntern_File
MTPIntern_File.
Definition: MTP_Typedefs.h:75
LIBMTP_mtpdevice_t MTPIntern_Device
MTPIntern_Device.
Definition: MTP_Typedefs.h:63