mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-23 15:11:47 +00:00
22 lines
381 B
C++
22 lines
381 B
C++
|
// Copyright 2020-2022, Collabora, Ltd.
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
/*!
|
||
|
* @file
|
||
|
* @brief Internal C++ header for SDL XR system.
|
||
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
||
|
* @ingroup sdl_test
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
#error "This header is C++ only"
|
||
|
#endif
|
||
|
|
||
|
#include "sdl_internal.h"
|
||
|
|
||
|
struct sdl_program_plus : sdl_program
|
||
|
{
|
||
|
// CPP only things
|
||
|
};
|