CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
POSIXFileSystem.hpp
Go to the documentation of this file.
1
2//
3// CeresEngine - A game development framework
4//
5// Created by Rogiel Sulzbach.
6// Copyright (c) 2018-2023 Rogiel Sulzbach. All rights reserved.
7//
8
9#pragma once
10
11#include "Forward.hpp"
12
15
18
20
21#include <memory>
22
23namespace CeresEngine {
24
28
29 public:
32
33 public:
35 virtual FileHandle open(StringView path) override;
36
38 virtual FileHandle open(String&& path) override;
39 };
40
41} // namespace CeresEngine
Handle for a file or directory.
Definition FileHandle.hpp:46
An implementation of a local file system.
Definition LocalFileSystem.hpp:17
Representation of the local file system.
Definition POSIXFileSystem.hpp:26
virtual FileHandle open(StringView path) override
virtual FileHandle open(String &&path) override
Definition Application.hpp:19