Rerun C++ SDK
Loading...
Searching...
No Matches
string_utils.hpp
1
2#pragma once
3
4#include <optional>
5#include <string>
6#include <string_view>
7
8struct rr_string;
9
10namespace rerun {
11 namespace detail {
12 rr_string to_rr_string(const std::string& str);
13 rr_string to_rr_string(std::string_view str);
14 rr_string to_rr_string(std::optional<std::string_view> str);
15 } // namespace detail
16} // namespace rerun
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22