mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-22 23:30:54 +00:00
d4a7107bde
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@404 aa027e90-d47c-11dd-86d7-074df07e0730
14 lines
235 B
C++
14 lines
235 B
C++
#include "VolumeEntry.h"
|
|
|
|
using namespace NuFX;
|
|
|
|
void VolumeEntry::addEntry(EntryPointer e)
|
|
{
|
|
if (!e) return;
|
|
|
|
e->setVolume(pointer());
|
|
|
|
_inodeIndex->push_back(e);
|
|
|
|
e->_inode = _inodeIndex->length() + 100 - 1;
|
|
} |