Files
openvehicle-api/examples/open_trunk_example/trunk_service/trunkkit.idl
tompzf 6ed4b1534e Precommit (#1)
* first commit

* cleanup
2025-11-04 13:28:06 +01:00

16 lines
457 B
Plaintext

/*******************************************************************************
* @file trunkkit.idl
* @details Service interface definition to open the trunk.
*/
/**
* @brief Service to open the trunk
*/
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();
};