mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:38:12 +00:00
Some more renaming:
FileSystem -> FS SyntheticFileSystem -> SynthFS ProcFileSystem -> ProcFS Ext2FileSystem -> Ext2FS Ext2Inode -> Ext2FSInode
This commit is contained in:
parent
eced5f11e3
commit
2529925fe9
16 changed files with 187 additions and 187 deletions
|
@ -3,7 +3,7 @@
|
|||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/Types.h>
|
||||
|
||||
class FileSystem;
|
||||
class FS;
|
||||
struct InodeMetadata;
|
||||
|
||||
class InodeIdentifier {
|
||||
|
@ -20,8 +20,8 @@ public:
|
|||
dword fsid() const { return m_fileSystemID; }
|
||||
dword index() const { return m_index; }
|
||||
|
||||
FileSystem* fileSystem();
|
||||
const FileSystem* fileSystem() const;
|
||||
FS* fileSystem();
|
||||
const FS* fileSystem() const;
|
||||
|
||||
bool operator==(const InodeIdentifier& other) const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue