Updated the git clone command.
[emufront] / src / db / dbmediatype.h
index 5552f8d..cd03a3f 100644 (file)
@@ -1,49 +1,38 @@
-// EmuFront
-// Copyright 2010 Mikko Keinänen
-//
-// This file is part of EmuFront.
-//
-//
-// EmuFront is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// Foobar is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with Foobar.  If not, see <http://www.gnu.org/licenses/>.
-
-#ifndef DBMEDIATYPE_H
+/*
+** EmuFront
+** Copyright 2010 Mikko Keinänen
+**
+** This file is part of EmuFront.
+**
+**
+** EmuFront is free software: you can redistribute it and/or modify
+** it under the terms of the GNU General Public License version 2 as published by
+** the Free Software Foundation and appearing in the file gpl.txt included in the
+** packaging of this file.
+**
+** EmuFront is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
+*/#ifndef DBMEDIATYPE_H
 #define DBMEDIATYPE_H
 
-#include "databasemanager.h"
-#include "../dataobjects/mediatype.h"
-
-class QModelIndex;
+#include "dbemufrontfileobject.h"
+#include "mediatype.h"
 
-class DbMediaType : public DatabaseManager
+class DbMediaType : public DbEmuFrontFileObject
 {
 public:
-    DbMediaType(QObject*);
-    virtual QSqlTableModel* getDataModel();
-    virtual EmuFrontObject* getDataObjectFromModel(QModelIndex*);
-    virtual bool updateDataObjectToModel(const EmuFrontObject*);
-    virtual bool insertDataObjectToModel(const EmuFrontObject*);
-    virtual bool deleteDataObjectFromModel(QModelIndex*);
-    virtual int countDataObjectRefs(int) const;
+    DbMediaType(QObject *);
 
-private:
-    enum {
-        MediaType_Id = 0,
-        MediaType_Name = 1,
-        MediaType_Filename = 2 };
-    static const QString DB_TABLE_NAME_MEDIATYPE;
-    virtual QSqlTableModel* getData();
+protected:
+    virtual EmuFrontObject* createEmuFrontFileObject(int id, QString name, EmuFrontFile *f);
 
+private:
+    QString getCountRefsSelect(int) const;
 };
 
 #endif // DBMEDIATYPE_H