Still experimenting with unit testing code.
[emufront] / src / dataobjects / filepathobject.h
index a581238..d0bb80f 100644 (file)
@@ -5,9 +5,9 @@
 //
 //
 // 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.
 //
 // EmuFront is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -27,7 +27,7 @@ class Setup;
 class FilePathObject : public EmuFrontObject
 {
 public:
-    FilePathObject();
+    FilePathObject(int type);
     ~FilePathObject();
     FilePathObject(int id, QString name, int filetype);
     FilePathObject(int id, QString name, int filetype, Setup*);
@@ -39,6 +39,13 @@ public:
     int getType() const;
     void setType(int);
 
+    enum {
+        FilePathType_MediaImageDir = 1,
+        FilePathType_TmpDir,
+        FilePathType_PlatformIconsDir,
+        FilePathType_MediaIconsDir
+    };
+
 private:
     int type;
     Setup *setup;