Added configuration of temporary directory.
[emufront] / src / dataobjects / filepathobject.cpp
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 version 2 as published by
9 // the Free Software Foundation and appearing in the file gpl.txt included in the
10 // packaging of this file.
11 //
12 // EmuFront 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 EmuFront.  If not, see <http://www.gnu.org/licenses/>.
19
20 #include <QDebug>
21 #include "filepathobject.h"
22 #include "setup.h"
23
24 FilePathObject::FilePathObject(int type)
25     : EmuFrontObject(), type(type), setup(0)
26 { }
27
28 FilePathObject::FilePathObject(int id, QString name, int filetype)
29     : EmuFrontObject(id, name), type(filetype), setup(0) {}
30
31  FilePathObject::FilePathObject(int id, QString name, int filetype, Setup *setup)
32     : EmuFrontObject(id, name), type(filetype), setup(setup) {}
33
34 FilePathObject::~FilePathObject()
35 {
36     if (setup) delete setup;
37 }
38
39 FilePathObject::FilePathObject(const FilePathObject &fpobj)
40     : EmuFrontObject(fpobj), type(fpobj.type)
41 {
42     Setup *s = fpobj.setup;
43     setup = new Setup(*s);
44 }
45
46 FilePathObject& FilePathObject::operator =(const FilePathObject &fpobj)
47 {
48     if (this == &fpobj) return *this;
49     id = fpobj.id;
50     name = fpobj.name;
51     type = fpobj.type;
52     if (setup) delete setup;
53     Setup *sup = fpobj.setup;
54     setup = new Setup(*sup);
55     return (*this);
56 }
57
58 Setup* FilePathObject::getSetup() const
59 { return setup; }
60 void FilePathObject::setSetup(Setup *sup)
61 { setup = sup; }
62
63 int FilePathObject::getType() const
64 { return type; }
65 void FilePathObject::setType(int t)
66 { type = t; }