summaryrefslogtreecommitdiffhomepage
path: root/Private/KernelKit/FileManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Private/KernelKit/FileManager.hpp')
-rw-r--r--Private/KernelKit/FileManager.hpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/Private/KernelKit/FileManager.hpp b/Private/KernelKit/FileManager.hpp
index 52dfb267..311527f9 100644
--- a/Private/KernelKit/FileManager.hpp
+++ b/Private/KernelKit/FileManager.hpp
@@ -77,10 +77,13 @@ namespace hCore
};
+ /**
+ * @brief Child of IFilesystemManager, takes care of managing NewFS disks.
+ */
class NewFilesystemManager final : public IFilesystemManager
{
public:
- NewFilesystemManager();
+ explicit NewFilesystemManager();
~NewFilesystemManager() override;
public:
@@ -113,6 +116,11 @@ namespace hCore
};
+ /**
+ * Usable FileStream
+ * @tparam Encoding file encoding (char, wchar_t...)
+ * @tparam FSClass Filesystem contract who takes care of it.
+ */
template <typename Encoding = char, typename FSClass = NewFilesystemManager>
class FileStream final
{