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
|
|
|
|
|
********************************************************************************/
|
2025-11-04 13:28:06 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Service to open the trunk
|
2026-03-27 14:12:49 +01:00
|
|
|
* @details Service interface definition to open the trunk.
|
2025-11-04 13:28:06 +01:00
|
|
|
*/
|
|
|
|
|
interface ITrunkKitService
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @brief Save call to open the trunk. Opening the trunk is onkly allowed when the vehicle is not moving
|
|
|
|
|
* @return Returns whether the trunk could be opened or not.
|
|
|
|
|
*/
|
|
|
|
|
boolean PopTrunk();
|
|
|
|
|
};
|