Sayonara Player
MTP_File.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_FILE_H
21 #define MTP_FILE_H
22 
23 #include "MTP_Typedefs.h"
24 
29 class MTP_File
30 {
31 private:
32  quint32 _id;
33  QString _filename;
34 
35  MTPIntern_File* _file=nullptr;
36  MTPIntern_Device* _device=nullptr;
37 
38 
39 public:
40 
42  virtual ~MTP_File();
43 
44  quint32 id() const;
45  QString filename() const;
46  bool remove() const;
47 
48  bool operator==(const MTP_File& other) const;
49 };
50 
51 #endif // MTP_FILE_H
The MTP_File class.
Definition: MTP_File.h:29
LIBMTP_file_t MTPIntern_File
MTPIntern_File.
Definition: MTP_Typedefs.h:72
LIBMTP_mtpdevice_t MTPIntern_Device
MTPIntern_Device.
Definition: MTP_Typedefs.h:60