waterlinkedsonar
C++ client library for the Water Linked Sonar 3D-15
Loading...
Searching...
No Matches
span.hpp
Go to the documentation of this file.
1
3
4#ifndef WATERLINKEDSONAR_SPAN_HPP
5#define WATERLINKEDSONAR_SPAN_HPP
6
7#include <waterlinkedsonar/detail/tcb_span.hpp>
8
9namespace waterlinked::sonar {
10
16template <typename T>
17using Span = tcb::span<T>;
18
19} // namespace waterlinked::sonar
20
21#endif // WATERLINKEDSONAR_SPAN_HPP
Definition client.hpp:14
tcb::span< T > Span
Non-owning view over a contiguous sequence.
Definition span.hpp:17