diff options
| author | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-16 21:46:29 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@el-mahrouss-logic.com> | 2024-03-16 21:46:29 +0100 |
| commit | a4d4de6913fb7dd54847b0e5a004c3100bc02459 (patch) | |
| tree | 4b7eba7d0bcc282f96db8725466ee403f95e35ec /Private/FSKit | |
| parent | e8d46c98880ed3f33fc1760e8f3a99577fa31eb3 (diff) | |
HCR-14: Reworked page allocator for AMD64.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Private/FSKit')
| -rw-r--r-- | Private/FSKit/Defines.hxx (renamed from Private/FSKit/Defines.hpp) | 0 | ||||
| -rw-r--r-- | Private/FSKit/NewFSIteratorInterface.hxx (renamed from Private/FSKit/NewFSIndexer.hxx) | 12 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Private/FSKit/Defines.hpp b/Private/FSKit/Defines.hxx index 73c422be..73c422be 100644 --- a/Private/FSKit/Defines.hpp +++ b/Private/FSKit/Defines.hxx diff --git a/Private/FSKit/NewFSIndexer.hxx b/Private/FSKit/NewFSIteratorInterface.hxx index 023ebdc0..0c7a6743 100644 --- a/Private/FSKit/NewFSIndexer.hxx +++ b/Private/FSKit/NewFSIteratorInterface.hxx @@ -11,22 +11,22 @@ namespace HCore { namespace Indexer { -class INewFSIterator; +class NewFSIteratorInterface; using IndexElement = VoidPtr; /// -/// @name INewFSIterator +/// @name NewFSIteratorInterface /// @brief Stores relevant information for file indexing. /// -class INewFSIterator { +class NewFSIteratorInterface { public: - explicit INewFSIterator() = default; - virtual ~INewFSIterator() = default; + explicit NewFSIteratorInterface() = default; + virtual ~NewFSIteratorInterface() = default; public: - HCORE_COPY_DEFAULT(INewFSIterator); + HCORE_COPY_DEFAULT(NewFSIteratorInterface); public: void Append(IndexableProperty& indexProp) { fProps.Add(indexProp); } |
