2025-12-04 21:21:39 -08:00

37 lines
435 B
C++

#ifndef M_Health_HPP
#define M_Health_HPP
#include "HealthComponentAc.hpp"
namespace Svc {
class Health :
public HealthComponentBase
{
public:
typedef struct {
U32 a;
U32 b;
const char* c;
} PingEntry;
Health(const char* name) {
}
void init(U32 instanceId) {
}
virtual void pingIn_handler(FwIndexType portNum, U32 key) {
}
};
}
#endif