aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/psp/psp-fs-factory.h
blob: 05388fa69758af6c63d0f731c0cdb0960352222c (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 PSP_FILESYSTEM_FACTORY_H
#define PSP_FILESYSTEM_FACTORY_H

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

/**
 * Creates PSPFilesystemNode objects.
 * 
 * Parts of this class are documented in the base interface class, AbstractFilesystemFactory.
 */
class PSPFilesystemFactory : public AbstractFilesystemFactory {	
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;
	virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const;
	
protected:
	PSPFilesystemFactory() {};
		
private:
	static PSPFilesystemFactory *_instance;
};

#endif /*PSP_FILESYSTEM_FACTORY_H*/