openmw/components/vfs/filemap.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
221 B
C++
Raw Normal View History

#ifndef OPENMW_COMPONENTS_VFS_FILEMAP_H
#define OPENMW_COMPONENTS_VFS_FILEMAP_H
#include <map>
#include <string>
namespace VFS
{
class File;
using FileMap = std::map<std::string, File*, std::less<>>;
}
#endif