Files
openvehicle-api/tests/unit_tests/repository/IComponent.idl

18 lines
190 B
Plaintext
Raw Normal View History

#include <interfaces/core.idl>
/**
* @brief Example interface
*/
interface ITestLock
{
/**
* @brief Lock Mutex
*/
void Lock();
/**
* @brief Unlock Mutex
*/
void Unlock();
};