mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 00:40:22 -06:00
37 lines
435 B
C++
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
|