Blender V5.0
OCIO_version.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2025 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
5#pragma once
6
7namespace blender::ocio {
8
9struct Version {
10 int major = 0;
11 int minor = 0;
12 int patch = 0;
13};
14
20
21} // namespace blender::ocio
Version get_version()
Definition version.cc:11