Still experimenting with unit testing code.
[emufront] / src / dataobjects / filepathobject.h
index 41099a3..d0bb80f 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 FILEPATHOBJECT_H
 #define FILEPATHOBJECT_H
 
 class Setup;
 
-class FilePathObject : public EmuFrontFileObject
+class FilePathObject : public EmuFrontObject
 {
 public:
-    FilePathObject();
+    FilePathObject(int type);
     ~FilePathObject();
-    FilePathObject(int id, QString name, QString filename, int filetype);
-    FilePathObject(int id, QString name, QString filename, int filetype, Setup*);
+    FilePathObject(int id, QString name, int filetype);
+    FilePathObject(int id, QString name, int filetype, Setup*);
     FilePathObject(const FilePathObject &);
     FilePathObject& operator=(const FilePathObject &);
 
     Setup* getSetup() const;
     void setSetup(Setup *);
+    int getType() const;
+    void setType(int);
+
+    enum {
+        FilePathType_MediaImageDir = 1,
+        FilePathType_TmpDir,
+        FilePathType_PlatformIconsDir,
+        FilePathType_MediaIconsDir
+    };
 
 private:
+    int type;
     Setup *setup;
 };