// ====================================================================== // \title ActiveExternalParams.cpp // \author [user name] // \brief cpp file for ActiveExternalParams component implementation class // ====================================================================== #include "ActiveExternalParams.hpp" // ---------------------------------------------------------------------- // Component construction and destruction // ---------------------------------------------------------------------- ActiveExternalParams :: ActiveExternalParams(const char* const compName) { // TODO Initialize the ParamExternalDelegate // The register function can be called directly here: // E.G. this->registerExternalParameters(SomeParamExternalDelegateChild()); // Or you can call the register function in a public setup method // that is called when setting up the component instance. } ActiveExternalParams :: ~ActiveExternalParams() { } // ---------------------------------------------------------------------- // Handler implementations for typed input ports // ---------------------------------------------------------------------- void ActiveExternalParams :: aliasTypedAsync_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AliasStruct& s ) { // TODO } Fw::String ActiveExternalParams :: noArgsAliasStringReturnSync_handler(FwIndexType portNum) { // TODO return } void ActiveExternalParams :: noArgsAsync_handler(FwIndexType portNum) { // TODO } void ActiveExternalParams :: noArgsGuarded_handler(FwIndexType portNum) { // TODO } U32 ActiveExternalParams :: noArgsReturnGuarded_handler(FwIndexType portNum) { // TODO return } U32 ActiveExternalParams :: noArgsReturnSync_handler(FwIndexType portNum) { // TODO return } Fw::String ActiveExternalParams :: noArgsStringReturnSync_handler(FwIndexType portNum) { // TODO return } void ActiveExternalParams :: noArgsSync_handler(FwIndexType portNum) { // TODO } void ActiveExternalParams :: typedAliasGuarded_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AliasStruct& s ) { // TODO } AliasPrim2 ActiveExternalParams :: typedAliasReturnSync_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AliasStruct& s ) { // TODO return } Fw::String ActiveExternalParams :: typedAliasStringReturnSync_handler( FwIndexType portNum, AliasPrim1 u32, AliasPrim2 f32, AliasBool b, const Fw::StringBase& str2, const AliasEnum& e, const AliasArray& a, const AnotherAliasStruct& s ) { // TODO return } void ActiveExternalParams :: typedAsync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveExternalParams :: typedAsyncAssert_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveExternalParams :: typedAsyncBlockPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveExternalParams :: typedAsyncDropPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveExternalParams :: typedGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO } F32 ActiveExternalParams :: typedReturnGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str2, const E& e, const A& a, const S& s ) { // TODO return } F32 ActiveExternalParams :: typedReturnSync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str2, const E& e, const A& a, const S& s ) { // TODO return } void ActiveExternalParams :: typedSync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Fw::StringBase& str1, const E& e, const A& a, const S& s ) { // TODO }