mirror of
https://github.com/eclipse-openvehicle-api/openvehicle-api.git
synced 2026-02-05 15:18:45 +00:00
24 lines
444 B
C++
24 lines
444 B
C++
#ifndef VAPI_DUMMY_TEST_SERVICE_H
|
|
#define VAPI_DUMMY_TEST_SERVICE_H
|
|
|
|
#include <support/component_impl.h>
|
|
|
|
/**
|
|
* @brief Class to create a dummy test service.
|
|
*/
|
|
class CLoggerTestService
|
|
: public sdv::CSdvObject
|
|
{
|
|
public:
|
|
DECLARE_OBJECT_CLASS_TYPE(sdv::EObjectType::BasicService)
|
|
DECLARE_OBJECT_CLASS_NAME("LoggerTestService")
|
|
|
|
CLoggerTestService();
|
|
|
|
};
|
|
|
|
DEFINE_SDV_OBJECT(CLoggerTestService)
|
|
|
|
|
|
#endif // !define VAPI_DUMMY_TEST_SERVICE_H
|