mirror of
https://github.com/eclipse-openvehicle-api/openvehicle-api.git
synced 2026-07-02 05:35:11 +00:00
28
tests/component_tests/config_install/test_component.cpp
Normal file
28
tests/component_tests/config_install/test_component.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
#include <support/component_impl.h>
|
||||
|
||||
class CModuleTestComponent1 : public sdv::CSdvObject
|
||||
{
|
||||
public:
|
||||
|
||||
BEGIN_SDV_INTERFACE_MAP()
|
||||
END_SDV_INTERFACE_MAP()
|
||||
|
||||
DECLARE_OBJECT_CLASS_TYPE(sdv::EObjectType::Utility)
|
||||
DECLARE_OBJECT_CLASS_NAME("ModuleTestComponent1")
|
||||
private:
|
||||
};
|
||||
DEFINE_SDV_OBJECT(CModuleTestComponent1)
|
||||
|
||||
class CModuleTestComponent2 : public sdv::CSdvObject
|
||||
{
|
||||
public:
|
||||
|
||||
BEGIN_SDV_INTERFACE_MAP()
|
||||
END_SDV_INTERFACE_MAP()
|
||||
|
||||
DECLARE_OBJECT_CLASS_TYPE(sdv::EObjectType::Utility)
|
||||
DECLARE_OBJECT_CLASS_NAME("ModuleTestComponent2")
|
||||
private:
|
||||
};
|
||||
DEFINE_SDV_OBJECT(CModuleTestComponent2)
|
||||
|
||||
Reference in New Issue
Block a user