14 lines
264 B
C++
14 lines
264 B
C++
|
#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()");
|
||
|
}
|
||
|
}
|