aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/windows/windows-fs-factory.h
blob: a7abf390aea76ed4dc8de8a05896a9556880bcde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef WINDOWS_FILESYSTEM_FACTORY_H
#define WINDOWS_FILESYSTEM_FACTORY_H

#include "backends/fs/abstract-fs-factory.h"

/**
 * Creates WindowsFilesystemNode objects.
 * 
 * Parts of this class are documented in the base interface class, AbstractFilesystemFactory.
 */
class WindowsFilesystemFactory : public AbstractFilesystemFactory {	
public:
	typedef Common::String String;
	
	/**
	 * Creates an instance of WindowsFilesystemFactory using the Singleton pattern.
	 * 
	 * @return A unique instance of WindowsFilesytemFactory.
	 */
	static WindowsFilesystemFactory *instance();
	
	virtual AbstractFilesystemNode *makeRootFileNode() const;
	virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const;
	virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const;
	
protected:
	WindowsFilesystemFactory() {};
		
private:
	static WindowsFilesystemFactory *_instance;
};

#endif /*WINDOWS_FILESYSTEM_FACTORY_H*/