Luna/kernel/src/fs/ext2/Inode.cpp

14 lines
264 B
C++
Raw Normal View History

#include "fs/ext2/Inode.h"
namespace Ext2
{
Inode::Inode(Badge<FileSystem>, FileSystem* fs) : m_fs(fs)
{
}
Result<usize> Inode::read(u8* /*buf*/, usize /*offset*/, usize /*length*/) const
{
fail("FIXME: Ext2::Inode::read()");
}
}