5#include "podofo_config.h"
7#ifdef PODOFO_DEVENDOR_TCBSPAN
10#include <podofo/3rdparty/span.hpp>
17 template <
class T,
size_t Extent = tcb::dynamic_extent>
18 using cspan = tcb::span<const T, Extent>;
21 template <
class T,
size_t Extent = tcb::dynamic_extent,
typename std::enable_if<!std::is_const_v<T>,
int>::type = 0>
22 using mspan = tcb::span<T, Extent>;
All classes, functions, types and enums of PoDoFo are members of these namespace.
Definition basetypes.h:13
tcb::span< const T, Extent > cspan
Constant span.
Definition span.h:18
tcb::span< T, Extent > mspan
Mutable span.
Definition span.h:22