Updates the last scanned timestamp after successful scan.
[emufront] / src / db / dbfilepath.h
index 0bb8786..c1c745a 100644 (file)
@@ -5,17 +5,17 @@
 //
 //
 // 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.
+// 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.
 //
-// Foobar is distributed in the hope that it will be useful,
+// 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 Foobar.  If not, see <http://www.gnu.org/licenses/>.
+// along with EmuFront.  If not, see <http://www.gnu.org/licenses/>.
 
 #ifndef DBFILEPATH_H
 #define DBFILEPATH_H
@@ -29,22 +29,27 @@ class DbFilePath : public DbQueryModelManager
 public:
     DbFilePath(QObject *);    
     virtual bool updateDataObjectToModel(const EmuFrontObject*);
-    bool insertDataObjectToModel(const EmuFrontObject*);
+    int insertDataObjectToModel(const EmuFrontObject*);
     bool deleteDataObjectFromModel(QModelIndex*);
-    int countDataObjectRefs(int) const;
+    bool setScanned(const EmuFrontObject *ob);
     enum { FilePath_Id = 0,
            FilePath_Name,
            FilePath_LastScanned,
            FilePath_SetupId,
-           FilePath_SetupName };
+           FilePath_SetupName,
+           FilePath_FileTypeId
+           };
 
 protected:
     virtual EmuFrontObject* recordToDataObject(const QSqlRecord* );
     virtual QString constructSelectById(int id) const;
+    virtual QString constructFilterById(int id) const;
     virtual QString constructSelect(QString whereClause = "") const;
+    virtual bool deleteDataObject(int id) const;
 
 private:
     virtual QSqlQueryModel* getData();
+    virtual QString getCountRefsSelect(int) const;
     DbSetup *dbSetup;
 };