filesystemfactory.h
来自「使用stl技术,(还没看,是听说的)」· C头文件 代码 · 共 24 行
H
24 行
#ifndef _FileSystemFactory_H__
#define _FileSystemFactory_H__
#include "OgreArchiveFactory.h"
namespace Ogre {
/** Specialisation of ArchiveFactory for folders. */
class FileSystemFactory : public ArchiveFactory
{
public:
virtual ~FileSystemFactory();
String getArchiveType(void) const;
ArchiveEx* createArchive(const String& name);
ArchiveEx *createObj( const String& name );
String getType() const;
};
}
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?