mirror of
https://github.com/nasa/fpp.git
synced 2025-12-10 00:40:22 -06:00
35 lines
313 B
C++
35 lines
313 B
C++
#ifndef M_C_HPP
|
|
#define M_C_HPP
|
|
|
|
#include "CComponentAc.hpp"
|
|
|
|
namespace M {
|
|
|
|
class C :
|
|
public CComponentBase
|
|
{
|
|
|
|
public:
|
|
|
|
C(const char* name) {
|
|
|
|
}
|
|
|
|
void init(U32 instanceId) {
|
|
|
|
}
|
|
|
|
void readParamFile() {
|
|
|
|
}
|
|
|
|
void loadParamsSpecial() {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|