Removed destructor from Platform since EmuFrontFileObject destructor
[emufront] / src / dataobjects / emufrontfileobject.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 "emufrontfileobject.h"
21 #include <QDebug>
22
23 EmuFrontFileObject::EmuFrontFileObject()
24     : EmuFrontObject(-1, ""), file(0) { }
25
26 EmuFrontFileObject::EmuFrontFileObject(int id, QString name, EmuFrontFile *file)
27     : EmuFrontObject(id, name), file(file) {}
28
29 EmuFrontFileObject::EmuFrontFileObject(const EmuFrontFileObject &pl)
30     : EmuFrontObject(pl)
31 {
32     EmuFrontFile *f = pl.file;
33     file = f ? new EmuFrontFile(*f) : 0;
34 }
35
36 EmuFrontFileObject::~EmuFrontFileObject()
37 {
38     qDebug() << "EmuFrontFileObject " << name << " dying";
39     if (file) qDebug() << "File " << file->getName() << " will also be deleted.";
40     delete file;
41 }
42
43 EmuFrontFileObject& EmuFrontFileObject::operator =(const EmuFrontFileObject &ob)
44 {
45     if (this == &ob) return (*this);
46     id = ob.id;
47     name = ob.name;
48     delete file;
49     EmuFrontFile *f = ob.file;
50     file = new EmuFrontFile(*f);
51     return (*this);
52 }