mirror of
https://github.com/team-charls/charls
synced 2025-03-28 21:03:13 +00:00

To make it more clear to users and tooling that the project is a C++ project use the extension .hpp for pure C++ headers. Add a new public header file charls.hpp. External C++ projects should this header file, C projects should still use charls.h.
10 lines
211 B
C++
10 lines
211 B
C++
// Copyright (c) Team CharLS.
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#pragma once
|
|
|
|
void test_conformance();
|
|
void test_color_transforms_hp_images();
|
|
void test_sample_annex_h3();
|
|
void test_sample_annex_h4_5();
|