Rerun C++ SDK
Loading...
Searching...
No Matches
visible.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/store/re_types/definitions/rerun/blueprint/components/visible.fbs".
3
4#pragma once
5
6#include "../../datatypes/bool.hpp"
7#include "../../result.hpp"
8
9#include <cstdint>
10#include <memory>
11
12namespace rerun::blueprint::components {
13 /// **Component**: Whether the container, view, entity or instance is currently visible.
14 struct Visible {
16
17 public:
18 Visible() = default;
19
20 Visible(rerun::datatypes::Bool visible_) : visible(visible_) {}
21
22 Visible& operator=(rerun::datatypes::Bool visible_) {
23 visible = visible_;
24 return *this;
25 }
26
27 Visible(bool value_) : visible(value_) {}
28
29 Visible& operator=(bool value_) {
30 visible = value_;
31 return *this;
32 }
33
34 /// Cast to the underlying Bool datatype
35 operator rerun::datatypes::Bool() const {
36 return visible;
37 }
38 };
39} // namespace rerun::blueprint::components
40
41namespace rerun {
42 static_assert(sizeof(rerun::datatypes::Bool) == sizeof(blueprint::components::Visible));
43
44 /// \private
45 template <>
46 struct Loggable<blueprint::components::Visible> {
47 static constexpr const char Name[] = "rerun.blueprint.components.Visible";
48
49 /// Returns the arrow data type this type corresponds to.
50 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
52 }
53
54 /// Serializes an array of `rerun::blueprint:: components::Visible` into an arrow array.
55 static Result<std::shared_ptr<arrow::Array>> to_arrow(
56 const blueprint::components::Visible* instances, size_t num_instances
57 ) {
58 return Loggable<rerun::datatypes::Bool>::to_arrow(&instances->visible, num_instances);
59 }
60 };
61} // namespace rerun
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Component: Whether the container, view, entity or instance is currently visible.
Definition visible.hpp:14
Datatype: A single boolean.
Definition bool.hpp:19