Added new database object classes: the base class EmuFrontObject and
[emufront] / src / dataobjects / platform.cpp
1 #include "platform.h"
2
3 Platform::Platform() : EmuFrontObject()
4 {
5 }
6
7 Platform::Platform(int id, QString name, QString filename)
8         : EmuFrontObject(id, name), filename(filename)
9 {
10 }
11
12 // we make deep copies of name and filename strings
13 /*Platform::Platform(const Platform &pl) : EmuFrontObject(pl.id, pl.name), filename(pl.filename)
14 {
15     // no need to perform deep copy here, see:
16     // http://doc.trolltech.com/4.0/shclass.html
17 }*/