diff options
Diffstat (limited to 'backends/fs/windows/windows-fs-factory.h')
| -rw-r--r-- | backends/fs/windows/windows-fs-factory.h | 13 | 
1 files changed, 2 insertions, 11 deletions
| diff --git a/backends/fs/windows/windows-fs-factory.h b/backends/fs/windows/windows-fs-factory.h index 0745b286a8..3c7b80942d 100644 --- a/backends/fs/windows/windows-fs-factory.h +++ b/backends/fs/windows/windows-fs-factory.h @@ -25,7 +25,6 @@  #ifndef WINDOWS_FILESYSTEM_FACTORY_H  #define WINDOWS_FILESYSTEM_FACTORY_H -#include "common/singleton.h"  #include "backends/fs/fs-factory.h"  /** @@ -33,19 +32,11 @@   *   * Parts of this class are documented in the base interface class, FilesystemFactory.   */ -class WindowsFilesystemFactory : public FilesystemFactory, public Common::Singleton<WindowsFilesystemFactory> { +class WindowsFilesystemFactory : public FilesystemFactory {  public: -	typedef Common::String String; -  	virtual AbstractFilesystemNode *makeRootFileNode() const;  	virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const; -	virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const; - -protected: -	WindowsFilesystemFactory() {}; - -private: -	friend class Common::Singleton<SingletonBaseType>; +	virtual AbstractFilesystemNode *makeFileNodePath(const Common::String &path) const;  };  #endif /*WINDOWS_FILESYSTEM_FACTORY_H*/ | 
