Added new data object class FilePathObject and updated
[emufront] / src / dataobjects / filepathobject.h
1 // EmuFront
2 // Copyright 2010 Mikko Keinänen
3 //
4 // This file is part of EmuFront.
5 //
6 //
7 // EmuFront is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // Foobar is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
19
20 #ifndef FILEPATHOBJECT_H
21 #define FILEPATHOBJECT_H
22
23 #include "emufrontfileobject.h"
24 #include "platform.h"
25 #include "mediatype.h"
26
27 class FilePathObject : public EmuFrontFileObject
28 {
29 public:
30     FilePathObject();
31     ~FilePathObject();
32     FilePathObject(int id, QString name, QString filename, int filetype);
33     FilePathObject(int id, QString name, QString filename, int filetype, Platform*, MediaType*);
34     FilePathObject(const FilePathObject &);
35     FilePathObject& operator=(const FilePathObject &);
36
37     Platform* getPlatform() const
38     { return platform; }
39     MediaType* getMediaType() const
40     { return mediaType; }
41     void setPlatform(Platform *plf)
42     { platform = plf; }
43     void setMediaType(MediaType *med)
44     { mediaType = med; }
45
46 private:
47     Platform *platform;
48     MediaType *mediaType;
49
50 };
51
52 #endif // FILEPATHOBJECT_H