mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 22:19:07 +00:00
36 lines
781 B
C
36 lines
781 B
C
|
// VFSLoader.h - late loading of files not in the tree
|
||
|
// For conditions of distribution and use, see copyright notice in VFS.h
|
||
|
|
||
|
#ifndef VFSLOADER_H
|
||
|
#define VFSLOADER_H
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include "VFSDefines.h"
|
||
|
|
||
|
VFS_NAMESPACE_START
|
||
|
|
||
|
class VFSFile;
|
||
|
class VFSDir;
|
||
|
|
||
|
// VFSLoader - to be called if a file is not in the tree.
|
||
|
class VFSLoader
|
||
|
{
|
||
|
public:
|
||
|
virtual ~VFSLoader() {}
|
||
|
virtual VFSFile *Load(const char *fn, const char *unmangled) = 0;
|
||
|
virtual VFSDir *LoadDir(const char *fn, const char *unmangled) { return NULL; }
|
||
|
};
|
||
|
|
||
|
class VFSLoaderDisk : public VFSLoader
|
||
|
{
|
||
|
public:
|
||
|
virtual ~VFSLoaderDisk() {}
|
||
|
virtual VFSFile *Load(const char *fn, const char *unmangled);
|
||
|
virtual VFSDir *LoadDir(const char *fn, const char *unmangled);
|
||
|
};
|
||
|
|
||
|
VFS_NAMESPACE_END
|
||
|
|
||
|
|
||
|
#endif
|