Loading [MathJax]/extensions/tex2jax.js
Radium Engine
1.5.20
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
f
g
i
l
m
n
o
p
q
r
s
t
v
z
Functions
a
c
d
f
g
i
l
m
n
o
p
q
r
s
t
v
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
b
d
f
i
m
s
v
w
Typedefs
a
b
c
f
g
i
k
o
r
s
t
v
Enumerations
Enumerator
Related Symbols
Files
File List
File Members
All
Macros
▼
Radium Engine
►
Radium Basics
►
Radium Concepts
►
Developer manual
►
Licenses
Todo List
Deprecated List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
src
▼
Core
►
Animation
►
Asset
►
Containers
►
Geometry
►
Math
►
Resources
►
Tasks
▼
Utils
Attribs.cpp
Attribs.hpp
BijectiveAssociation.hpp
Chronometer.hpp
CircularIndex.cpp
CircularIndex.hpp
Color.cpp
Color.hpp
ContainerIntrospectionInterface.hpp
EnumConverter.hpp
Index.hpp
IndexedObject.hpp
IndexMap.hpp
Log.hpp
ObjectWithSemantic.hpp
Observable.hpp
Singleton.hpp
StackTrace.cpp
StackTrace.hpp
StdExperimentalTypeTraits.hpp
StdFilesystem.hpp
►
StdMapIterators.hpp
StdOptional.hpp
StdUtils.hpp
StringUtils.cpp
StringUtils.hpp
Timer.hpp
TypesUtils.cpp
TypesUtils.hpp
Version.hpp
CoreMacros.hpp
pch.hpp
RaCore.hpp
Types.hpp
►
Engine
►
Gui
►
Headless
►
IO
►
PluginBase
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
StdFilesystem.hpp
1
#pragma once
2
3
#ifndef CXX_FILESYSTEM_HAVE_FS
4
# error std::filesystem is required to compile this file
5
#endif
6
#if CXX_FILESYSTEM_IS_EXPERIMENTAL
7
# include <experimental/filesystem>
8
9
// We need the alias from std::experimental::filesystem to std::filesystem
10
namespace
std
{
11
namespace
filesystem = experimental::filesystem;
12
}
13
14
#else
15
# include <filesystem>
16
#endif
std
STL namespace.
src
Core
Utils
StdFilesystem.hpp
Generated by
1.12.0