mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 15:36:19 -06:00
59 lines
572 B
C++
59 lines
572 B
C++
#ifndef M_Active_HPP
|
|
#define M_Active_HPP
|
|
|
|
#include "ActiveComponentAc.hpp"
|
|
|
|
namespace M {
|
|
|
|
class Active :
|
|
public ActiveComponentBase
|
|
{
|
|
|
|
public:
|
|
|
|
Active() {
|
|
|
|
}
|
|
|
|
Active(const char* name) {
|
|
|
|
}
|
|
|
|
void init(U32 queueSize, U32 instanceId) {
|
|
|
|
}
|
|
|
|
void initSpecial() {
|
|
|
|
}
|
|
|
|
void config() {
|
|
|
|
}
|
|
|
|
void startSpecial() {
|
|
|
|
}
|
|
|
|
void p_handler(FwIndexType portNum) {
|
|
|
|
}
|
|
|
|
void stopSpecial() {
|
|
|
|
}
|
|
|
|
void freeSpecial() {
|
|
|
|
}
|
|
|
|
void tearDown() {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|