mirror of
https://github.com/nasa/fpp.git
synced 2025-12-16 05:15:08 -06:00
53 lines
1.3 KiB
C++
Vendored
53 lines
1.3 KiB
C++
Vendored
// ======================================================================
|
|
// \title ActiveNoArgsPortsOnly.cpp
|
|
// \author [user name]
|
|
// \brief cpp file for ActiveNoArgsPortsOnly component implementation class
|
|
// ======================================================================
|
|
|
|
#include "ActiveNoArgsPortsOnly.hpp"
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Component construction and destruction
|
|
// ----------------------------------------------------------------------
|
|
|
|
ActiveNoArgsPortsOnly ::
|
|
ActiveNoArgsPortsOnly(const char* const compName) :
|
|
ActiveNoArgsPortsOnlyComponentBase(compName)
|
|
{
|
|
|
|
}
|
|
|
|
ActiveNoArgsPortsOnly ::
|
|
~ActiveNoArgsPortsOnly()
|
|
{
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------
|
|
// Handler implementations for typed input ports
|
|
// ----------------------------------------------------------------------
|
|
|
|
void ActiveNoArgsPortsOnly ::
|
|
noArgsAsync_handler(FwIndexType portNum)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void ActiveNoArgsPortsOnly ::
|
|
noArgsGuarded_handler(FwIndexType portNum)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
U32 ActiveNoArgsPortsOnly ::
|
|
noArgsReturnGuarded_handler(FwIndexType portNum)
|
|
{
|
|
// TODO return
|
|
}
|
|
|
|
U32 ActiveNoArgsPortsOnly ::
|
|
noArgsReturnSync_handler(FwIndexType portNum)
|
|
{
|
|
// TODO return
|
|
}
|