Zrythm v2.0.0-DEV
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
project_json_schema.in.h
1// SPDX-FileCopyrightText: © 2026 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#pragma once
5
6#include <string_view>
7
8namespace zrythm::structure::project
9{
10
17inline constexpr char kProjectSchemaJsonBytes[]
18{
19 // clang-format off
20 @SCHEMA_JSON_HEX_BYTES@
21};
22
28inline constexpr std::string_view kProjectSchemaJsonStr{
29 static_cast<const char *> (kProjectSchemaJsonBytes),
30 sizeof (kProjectSchemaJsonBytes)
31};
32}