#ifndef PALMOS_FILESYSTEM_FACTORY_H #define PALMOS_FILESYSTEM_FACTORY_H #include "backends/fs/abstract-fs-factory.h" /** * Creates PalmOSFilesystemNode objects. * * Parts of this class are documented in the base interface class, AbstractFilesystemFactory. */ class PalmOSFilesystemFactory : public AbstractFilesystemFactory, public Common::Singleton { public: typedef Common::String String; virtual AbstractFilesystemNode *makeRootFileNode() const; virtual AbstractFilesystemNode *makeCurrentDirectoryFileNode() const; virtual AbstractFilesystemNode *makeFileNodePath(const String &path) const; protected: PalmOSFilesystemFactory() {}; private: friend class Common::Singleton; }; #endif /*PALMOS_FILESYSTEM_FACTORY_H*/