blend2d-impl.h (899B)
1 // This file is part of Blend2D project <https://blend2d.com> 2 // 3 // See blend2d.h or LICENSE.md for license and copyright information 4 // SPDX-License-Identifier: Zlib 5 6 // ---------------------------------------------------------------------------- 7 // Blend2D - 2D Vector Graphics Powered by a JIT Compiler. 8 // 9 // * Official Blend2D Home Page: https://blend2d.com 10 // * Official Github Repository: https://github.com/blend2d/blend2d 11 // 12 // This header is provided for users that want to extend Blend2D library. It 13 // provides some utilities that make such extending easier. 14 // ---------------------------------------------------------------------------- 15 16 #ifndef BLEND2D_IMPL_H_INCLUDED 17 #define BLEND2D_IMPL_H_INCLUDED 18 19 #ifndef __cplusplus 20 #error "blend2d-impl.h header can only be included in C++ mode" 21 #endif 22 23 #include "blend2d.h" 24 #include "blend2d/api-impl.h" 25 26 #endif // BLEND2D_IMPL_H_INCLUDED