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
IndexedObject.hpp
1
#pragma once
2
3
#include <Core/RaCore.hpp>
4
#include <Core/Utils/Index.hpp>
5
6
namespace
Ra
{
7
namespace
Core {
8
namespace
Utils {
9
13
class
IndexedObject
14
{
15
public
:
17
explicit
inline
IndexedObject
( Index idx = Index::Invalid() ) :
m_idx
{ idx } {}
18
inline
IndexedObject
(
const
IndexedObject
& id_obj ) =
default
;
19
virtual
inline
~IndexedObject
() =
default
;
20
21
inline
void
setIndex(
const
Index& idx ) {
m_idx
= idx; }
22
inline
const
Index& getIndex()
const
{
return
m_idx
; }
23
24
protected
:
26
Index
m_idx
;
27
};
13
class
IndexedObject
{
…
};
28
29
}
// namespace Utils
30
}
// namespace Core
31
}
// namespace Ra
Ra::Core::Utils::IndexedObject
Definition
IndexedObject.hpp:14
Ra::Core::Utils::IndexedObject::m_idx
Index m_idx
VARIABLE.
Definition
IndexedObject.hpp:26
Ra::Core::Utils::IndexedObject::IndexedObject
IndexedObject(Index idx=Index::Invalid())
CONSTRUCTOR.
Definition
IndexedObject.hpp:17
Ra
hepler function to manage enum as underlying types in VariableSet
Definition
Cage.cpp:3
src
Core
Utils
IndexedObject.hpp
Generated by
1.12.0