Files
openvehicle-api/tests/unit_tests/sdv_control/test_component.idl
tompzf 6ed4b1534e Precommit (#1)
* first commit

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

36 lines
549 B
Plaintext

#include <interfaces/core.idl>
#include <interfaces/process.idl>
/**
* @brief Example interface
*/
interface ITestLock
{
/**
* @brief Lock Mutex
*/
void Lock();
/**
* @brief Unlock Mutex
*/
void Unlock();
};
/**
* @brief Hello interface
*/
interface IHello
{
/**
* @brief Say hello
* @return The greetings string.
*/
u8string SayHello() const;
/**
* @brief Get the PID of the process the component is running in...
*/
//sdv::process::TProcessID GetPID() const;
};