LeviLamina
Loading...
Searching...
No Matches
ComponentStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/brstd/flat_map.h"
7
8namespace cereal {
9
10class ComponentStorage {
11public:
12 // member variables
13 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 ComponentStorage& operator=(ComponentStorage const&);
20 ComponentStorage(ComponentStorage const&);
21 ComponentStorage();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI bool eraseComponent(::std::string_view name);
27
28 MCNAPI ::entt::meta_any getComponent(::std::string_view name);
29
30 MCNAPI bool hasComponent(::std::string_view name) const;
31
32 MCNAPI ::cereal::ComponentStorage& operator=(::cereal::ComponentStorage&&);
33
34 MCNAPI bool operator==(::cereal::ComponentStorage const& other) const;
35 // NOLINTEND
36};
37
38} // namespace cereal
Definition ComponentStorage.h:10
MCAPI bool eraseComponent(::std::string_view name)
MCAPI::cereal::ComponentStorage & operator=(::cereal::ComponentStorage &&)
MCAPI bool hasComponent(::std::string_view name) const
MCAPI::entt::meta_any getComponent(::std::string_view name)
MCAPI bool operator==(::cereal::ComponentStorage const &other) const
Definition Alias.h:14