2026-03-27 14:12:49 +01:00
|
|
|
/********************************************************************************
|
|
|
|
|
* Copyright (c) 2025-2026 ZF Friedrichshafen AG
|
|
|
|
|
*
|
|
|
|
|
* This program and the accompanying materials are made available under the
|
|
|
|
|
* terms of the Apache License Version 2.0 which is available at
|
|
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*
|
|
|
|
|
* Contributors:
|
|
|
|
|
* Erik Verhoeven - initial API and implementation
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
2025-11-04 13:28:06 +01:00
|
|
|
#ifndef INCLUDES_IDL_COMPILER_H
|
|
|
|
|
#define INCLUDES_IDL_COMPILER_H
|
|
|
|
|
|
|
|
|
|
// Comment the following file to use the backup file. Uncomment to use the IDL file. Both files should contain identical
|
|
|
|
|
// definitions and declarations.
|
|
|
|
|
//#include <interfaces/core_idl.h>
|
|
|
|
|
|
|
|
|
|
// REMARKS: Using the "core_idl.h" works once; after that CMake detects circular dependencies and doesn't want to build any
|
|
|
|
|
// more. Therefore, it is advisable to use it only for checking the interfaces.
|
|
|
|
|
// To re-allow building again after a circular reference, clear the CMake cache (in the project-menu item).
|
|
|
|
|
|
|
|
|
|
#ifndef __IDL_GENERATED__CORE_IDL_DEF_H__
|
|
|
|
|
// BACKUP MODE - IN CASE "core_idl.h" is destroyed or doesn't exist
|
|
|
|
|
#include "core_idl_backup.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // !defined(INCLUDES_IDL_COMPILER_H)
|