optoctreeparser
Loading...
Searching...
No Matches
reader.hpp
Go to the documentation of this file.
1
8#pragma once
9
11#include <string_view>
12
13namespace optoctreeparser {
14
18class Reader {
19public:
28 static OptocTreeView optoctreeview_from_file(const std::string_view path);
29};
30
31}
Reads optoctree files.
Definition reader.hpp:18
static OptocTreeView optoctreeview_from_file(const std::string_view path)
Reads optoctree file.
Basic structures for storing optoctree data.
Definition base_struct.hpp:13
std::vector< byte > OptocTreeView
Definition base_struct.hpp:16