Epok Engine

EPOK RUNTIME

epok::NavigationBakeVolumeComponent::class_id

Method · 1 overload

Method

Performs `class id` as part of the navigation components module.

Belongs to
epok::NavigationBakeVolumeComponent
Header
navigation_components.hpp
Overloads
1

Declaration

const
Declaration
uint64_t class_id() const override

Performs `class id` as part of the navigation components module.

This overload takes no parameters.

Returns: uint64_t. Check the value before continuing when it represents success, availability or a resource handle.

Example

C++ example
#include "navigation_components.hpp"

epok::NavigationBakeVolumeComponent& object = /* obtain a valid instance */;

auto result = object.class_id();

Why use it

The method is `const`, so it does not mutate the object through this API surface.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/navigation_components.hpp:39