aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/psp/psp-fs-factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/fs/psp/psp-fs-factory.h')
-rw-r--r--backends/fs/psp/psp-fs-factory.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/backends/fs/psp/psp-fs-factory.h b/backends/fs/psp/psp-fs-factory.h
index 05388fa697..e751afbe1a 100644
--- a/backends/fs/psp/psp-fs-factory.h
+++ b/backends/fs/psp/psp-fs-factory.h
@@ -8,16 +8,9 @@
*
* Parts of this class are documented in the base interface class, AbstractFilesystemFactory.
*/
-class PSPFilesystemFactory : public AbstractFilesystemFactory {
+class PSPFilesystemFactory : public AbstractFilesystemFactory, public Common::Singleton<PSPFilesystemFactory> {
public:
typedef Common::String String;
-
- /**
- * Creates an instance of PSPFilesystemFactory using the Singleton pattern.
- *
- * @return A unique instance of PSPFilesytemFactory.
- */
- static PSPFilesystemFactory *instance();
virtual AbstractFilesystemNode *makeRootFileNode() const;
virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
@@ -27,7 +20,7 @@ protected:
PSPFilesystemFactory() {};
private:
- static PSPFilesystemFactory *_instance;
+ friend class Common::Singleton<SingletonBaseType>;
};
#endif /*PSP_FILESYSTEM_FACTORY_H*/