Monado OpenXR Runtime
sdl_internal.hpp
Go to the documentation of this file.
1// Copyright 2020-2023, Collabora, Ltd.
2// SPDX-License-Identifier: BSL-1.0
3/*!
4 * @file
5 * @brief Internal C++ header for SDL XR system.
6 * @author Jakob Bornecrantz <jakob@collabora.com>
7 * @ingroup sdl_test
8 */
9
10#pragma once
11
12#ifndef __cplusplus
13#error "This header is C++ only"
14#endif
15
16#include "sdl_internal.h"
17
18/*!
19 * C++ version of the @ref sdl_program struct, where you place C++ only things.
20 *
21 * @extends sdl_program
22 * @ingroup sdl_test
23 */
25{
26 // CPP only things
27};
Internal header for SDL XR system.
C++ version of the sdl_program struct, where you place C++ only things.
Definition: sdl_internal.hpp:25
C base class for the SDL program.
Definition: sdl_internal.h:115