1// [Blend2D]
2// 2D Vector Graphics Powered by a JIT Compiler.
3//
4// [License]
5// Zlib - See LICENSE.md file in the package.
6
7#ifndef BLEND2D_BLSTRING_P_H
8#define BLEND2D_BLSTRING_P_H
9
10#include "./blapi-internal_p.h"
11#include "./blarray_p.h"
12#include "./blstring.h"
13
14//! \cond INTERNAL
15//! \addtogroup blend2d_internal
16//! \{
17
18// ============================================================================
19// [BLString - Internal]
20// ============================================================================
21
22BL_HIDDEN BLResult blStringImplDelete(BLStringImpl* impl) noexcept;
23
24//! \}
25//! \endcond
26
27#endif // BLEND2D_BLSTRING_P_H
28