Removed the now obsolete singleton declaration macro from the FSNode factories.

svn-id: r27031
This commit is contained in:
David Corrales 2007-05-31 21:42:01 +00:00
parent 3646c968c9
commit 6c69d531d2
10 changed files with 0 additions and 20 deletions

View file

@ -1,8 +1,6 @@
#include "backends/fs/amigaos4/amigaos4-fs-factory.h" #include "backends/fs/amigaos4/amigaos4-fs-factory.h"
#include "backends/fs/amigaos4/amigaos4-fs.cpp" #include "backends/fs/amigaos4/amigaos4-fs.cpp"
DECLARE_SINGLETON(AmigaOSFilesystemFactory);
AbstractFilesystemNode *AmigaOSFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *AmigaOSFilesystemFactory::makeRootFileNode() const {
return new AmigaOSFilesystemNode(); return new AmigaOSFilesystemNode();
} }

View file

@ -1,8 +1,6 @@
#include "backends/fs/dc/ronincd-fs-factory.h" #include "backends/fs/dc/ronincd-fs-factory.h"
#include "backends/fs/dc/dc-fs.cpp" #include "backends/fs/dc/dc-fs.cpp"
DECLARE_SINGLETON(RoninCDFilesystemFactory);
AbstractFilesystemNode *RoninCDFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *RoninCDFilesystemFactory::makeRootFileNode() const {
return new RoninCDFilesystemNode(); return new RoninCDFilesystemNode();
} }

View file

@ -2,8 +2,6 @@
#include "backends/fs/ds/ds-fs.cpp" #include "backends/fs/ds/ds-fs.cpp"
#include "dsmain.h" //for the isGBAMPAvailable() function #include "dsmain.h" //for the isGBAMPAvailable() function
DECLARE_SINGLETON(DSFilesystemFactory);
AbstractFilesystemNode *DSFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *DSFilesystemFactory::makeRootFileNode() const {
if (DS::isGBAMPAvailable()) { if (DS::isGBAMPAvailable()) {
return new DS::GBAMPFileSystemNode(); return new DS::GBAMPFileSystemNode();

View file

@ -1,8 +1,6 @@
#include "backends/fs/gp32/gp32-fs-factory.h" #include "backends/fs/gp32/gp32-fs-factory.h"
#include "backends/fs/gp32/gp32-fs.cpp" #include "backends/fs/gp32/gp32-fs.cpp"
DECLARE_SINGLETON(GP32FilesystemFactory);
AbstractFilesystemNode *GP32FilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *GP32FilesystemFactory::makeRootFileNode() const {
return new GP32FilesystemNode(); return new GP32FilesystemNode();
} }

View file

@ -1,8 +1,6 @@
#include "backends/fs/morphos/abox-fs-factory.h" #include "backends/fs/morphos/abox-fs-factory.h"
#include "backends/fs/morphos/abox-fs.cpp" #include "backends/fs/morphos/abox-fs.cpp"
DECLARE_SINGLETON(ABoxFilesystemFactory);
AbstractFilesystemNode *ABoxFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *ABoxFilesystemFactory::makeRootFileNode() const {
return new ABoxFilesystemNode(); return new ABoxFilesystemNode();
} }

View file

@ -1,8 +1,6 @@
#include "backends/fs/palmos/palmos-fs-factory.h" #include "backends/fs/palmos/palmos-fs-factory.h"
#include "backends/fs/palmos/palmos-fs.cpp" #include "backends/fs/palmos/palmos-fs.cpp"
DECLARE_SINGLETON(PalmOSFilesystemFactory);
AbstractFilesystemNode *PalmOSFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *PalmOSFilesystemFactory::makeRootFileNode() const {
return new PalmOSFilesystemNode(); return new PalmOSFilesystemNode();
} }

View file

@ -1,8 +1,6 @@
#include "backends/fs/ps2/ps2-fs-factory.h" #include "backends/fs/ps2/ps2-fs-factory.h"
#include "backends/fs/ps2/ps2-fs.cpp" #include "backends/fs/ps2/ps2-fs.cpp"
DECLARE_SINGLETON(Ps2FilesystemFactory);
AbstractFilesystemNode *Ps2FilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *Ps2FilesystemFactory::makeRootFileNode() const {
return new Ps2FilesystemNode(); return new Ps2FilesystemNode();
} }

View file

@ -1,8 +1,6 @@
#include "backends/fs/psp/psp-fs-factory.h" #include "backends/fs/psp/psp-fs-factory.h"
#include "backends/fs/psp/psp_fs.cpp" #include "backends/fs/psp/psp_fs.cpp"
DECLARE_SINGLETON(PSPFilesystemFactory);
AbstractFilesystemNode *PSPFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *PSPFilesystemFactory::makeRootFileNode() const {
return new PSPFilesystemNode(); return new PSPFilesystemNode();
} }

View file

@ -1,8 +1,6 @@
#include "backends/fs/symbian/symbian-fs-factory.h" #include "backends/fs/symbian/symbian-fs-factory.h"
#include "backends/fs/symbian/symbian-fs.cpp" #include "backends/fs/symbian/symbian-fs.cpp"
DECLARE_SINGLETON(SymbianFilesystemFactory);
AbstractFilesystemNode *SymbianFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *SymbianFilesystemFactory::makeRootFileNode() const {
return new SymbianFilesystemNode(true); return new SymbianFilesystemNode(true);
} }

View file

@ -1,8 +1,6 @@
#include "backends/fs/windows/windows-fs-factory.h" #include "backends/fs/windows/windows-fs-factory.h"
#include "backends/fs/windows/windows-fs.cpp" #include "backends/fs/windows/windows-fs.cpp"
DECLARE_SINGLETON(WindowsFilesystemFactory);
AbstractFilesystemNode *WindowsFilesystemFactory::makeRootFileNode() const { AbstractFilesystemNode *WindowsFilesystemFactory::makeRootFileNode() const {
return new WindowsFilesystemNode(); return new WindowsFilesystemNode();
} }