diff options
| author | David Corrales | 2007-05-12 20:00:52 +0000 |
|---|---|---|
| committer | David Corrales | 2007-05-12 20:00:52 +0000 |
| commit | d1f56d93f934150f4b579c2e90564e2bf035f113 (patch) | |
| tree | 09aae1d4077c8e1c933fdca88d34d890a46f8a6a /backends/fs/gp32 | |
| parent | 86324f00bc561c03b281170125ef2fde14cae132 (diff) | |
| download | scummvm-rg350-d1f56d93f934150f4b579c2e90564e2bf035f113.tar.gz scummvm-rg350-d1f56d93f934150f4b579c2e90564e2bf035f113.tar.bz2 scummvm-rg350-d1f56d93f934150f4b579c2e90564e2bf035f113.zip | |
Use common/singleton.h in the concrete fs factories.
svn-id: r26814
Diffstat (limited to 'backends/fs/gp32')
| -rw-r--r-- | backends/fs/gp32/gp32-fs-factory.cpp | 9 | ||||
| -rw-r--r-- | backends/fs/gp32/gp32-fs-factory.h | 11 |
2 files changed, 3 insertions, 17 deletions
diff --git a/backends/fs/gp32/gp32-fs-factory.cpp b/backends/fs/gp32/gp32-fs-factory.cpp index fc19bdf1cf..6328836c0e 100644 --- a/backends/fs/gp32/gp32-fs-factory.cpp +++ b/backends/fs/gp32/gp32-fs-factory.cpp @@ -1,14 +1,7 @@ #include "backends/fs/gp32/gp32-fs-factory.h" #include "backends/fs/gp32/gp32-fs.cpp" -GP32FilesystemFactory *GP32FilesystemFactory::_instance = 0; - -GP32FilesystemFactory *GP32FilesystemFactory::instance(){ - if(_instance == 0){ - _instance = new GP32FilesystemFactory(); - } - return _instance; -} +DECLARE_SINGLETON(GP32FilesystemFactory); AbstractFilesystemNode *GP32FilesystemFactory::makeRootFileNode() const { return new GP32FilesystemNode(); diff --git a/backends/fs/gp32/gp32-fs-factory.h b/backends/fs/gp32/gp32-fs-factory.h index 1b34597d84..22c502d69f 100644 --- a/backends/fs/gp32/gp32-fs-factory.h +++ b/backends/fs/gp32/gp32-fs-factory.h @@ -8,16 +8,9 @@ * * Parts of this class are documented in the base interface class, AbstractFilesystemFactory. */ -class GP32FilesystemFactory : public AbstractFilesystemFactory { +class GP32FilesystemFactory : public AbstractFilesystemFactory, public Common::Singleton<GP32FilesystemFactory> { public: typedef Common::String String; - - /** - * Creates an instance of GP32FilesystemFactory using the Singleton pattern. - * - * @return A unique instance of GP32FilesytemFactory. - */ - static GP32FilesystemFactory *instance(); virtual AbstractFilesystemNode *makeRootFileNode() const; virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const; @@ -27,7 +20,7 @@ protected: GP32FilesystemFactory() {}; private: - static GP32FilesystemFactory *_instance; + friend class Common::Singleton<SingletonBaseType>; }; #endif /*GP32_FILESYSTEM_FACTORY_H*/ |
