CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
Forward.hpp
Go to the documentation of this file.
1//
2// CeresEngine - A game development framework
3//
4// Created by Rogiel Sulzbach.
5// Copyright (c) 2018-2022 Rogiel Sulzbach. All rights reserved.
6//
7
8#pragma once
9
11
12namespace CeresEngine {
13 struct PlatformWindowDescriptor;
14 class PlatformWindow;
15
16 class Platform;
17
18 class IFileSystem;
19
20 class FileHandle;
21 class IFileHandle;
22 class FileIterator;
23 class IFileIterator;
24
25 class FileWatcher;
26 class IFileWatcher;
27 class FileEventHandler;
28 class FunctionalFileEventHandler;
29
30 class FileVisitor;
31 class FunctionalFileVisitor;
32} // namespace CeresEngine
33
#define CE_RCPTR_TRAIT_DECL(ClassName)
Definition SmartPtr.hpp:375
Interface for accessing file systems.
Definition FileSystem.hpp:28
Definition Application.hpp:19