cmvr_head/applications/erpc/proto/generated/head_service_interface.hpp

36 lines
673 B
C++
Raw Normal View History

2025-12-24 18:28:20 +08:00
/*
2026-01-07 11:41:07 +08:00
* Generated by erpcgen 1.14.0 on Wed Dec 31 16:10:10 2025.
2025-12-24 18:28:20 +08:00
*
* AUTOGENERATED - DO NOT EDIT
*/
#if !defined(_head_service_interface_hpp_)
#define _head_service_interface_hpp_
#include "head_service_common.hpp"
namespace erpcShim
{
// Abstract base class for demo
class demo_interface
{
public:
static const uint8_t m_serviceId = 1;
static const uint8_t m_addId = 1;
2026-01-07 11:41:07 +08:00
static const uint8_t m_sum_i32Id = 2;
2025-12-24 18:28:20 +08:00
virtual ~demo_interface(void);
virtual int32_t add(int32_t a, int32_t b) = 0;
2026-01-07 11:41:07 +08:00
virtual int64_t sum_i32(const list_int32_1_t * arr) = 0;
2025-12-24 18:28:20 +08:00
private:
};
} // erpcShim
#endif // _head_service_interface_hpp_