mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
20 lines
498 B
C++
20 lines
498 B
C++
#include "precompiled.h"
|
|
#include "filesystem.h"
|
|
|
|
#include "path.h"
|
|
|
|
ERROR_ASSOCIATE(ERR::FILE_ACCESS, "Insufficient access rights to open file", EACCES);
|
|
ERROR_ASSOCIATE(ERR::DIR_END, "End of directory reached (no more files)", -1);
|
|
ERROR_ASSOCIATE(ERR::IO, "Error during IO", EIO);
|
|
ERROR_ASSOCIATE(ERR::IO_EOF, "Reading beyond end of file", -1);
|
|
|
|
|
|
// rationale for out-of-line dtors: see [Lakos]
|
|
|
|
IDirectoryIterator::~IDirectoryIterator()
|
|
{
|
|
}
|
|
|
|
IFilesystem::~IFilesystem()
|
|
{
|
|
}
|