1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-16 14:50:01 +00:00
Aquaria/ExternalLibs/ttvfs/VFSBase.cpp
2014-04-15 15:04:33 +02:00

26 lines
422 B
C++

// VFSBase.cpp - common code for VFSDir and VFSFile
// For conditions of distribution and use, see copyright notice in VFS.h
#include "VFSBase.h"
#include "VFSInternal.h"
#include "VFSTools.h"
VFS_NAMESPACE_START
VFSBase::VFSBase()
{
}
VFSBase::~VFSBase()
{
}
void VFSBase::_setName(const char *n)
{
_fullname = n;
FixPath(_fullname);
_name = GetBaseNameFromPath(_fullname.c_str());
}
VFS_NAMESPACE_END