// ====================================================================== // \title ActiveParams.cpp // \author [user name] // \brief cpp file for ActiveParams component implementation class // ====================================================================== #include "ActiveParams.hpp" #include "FpConfig.hpp" // ---------------------------------------------------------------------- // Component construction and destruction // ---------------------------------------------------------------------- ActiveParams :: ActiveParams(const char* const compName) : ActiveParamsComponentBase(compName) { } ActiveParams :: ~ActiveParams() { } // ---------------------------------------------------------------------- // Handler implementations for user-defined typed input ports // ---------------------------------------------------------------------- void ActiveParams :: noArgsAsync_handler(FwIndexType portNum) { // TODO } void ActiveParams :: noArgsGuarded_handler(FwIndexType portNum) { // TODO } U32 ActiveParams :: noArgsReturnGuarded_handler(FwIndexType portNum) { // TODO return } U32 ActiveParams :: noArgsReturnSync_handler(FwIndexType portNum) { // TODO return } void ActiveParams :: noArgsSync_handler(FwIndexType portNum) { // TODO } void ActiveParams :: typedAsync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveParams :: typedAsyncAssert_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveParams :: typedAsyncBlockPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveParams :: typedAsyncDropPriority_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } void ActiveParams :: typedGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO } F32 ActiveParams :: typedReturnGuarded_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedReturnPortStrings::StringSize80& str2, const E& e, const A& a, const S& s ) { // TODO return } F32 ActiveParams :: typedReturnSync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedReturnPortStrings::StringSize80& str2, const E& e, const A& a, const S& s ) { // TODO return } void ActiveParams :: typedSync_handler( FwIndexType portNum, U32 u32, F32 f32, bool b, const Ports::TypedPortStrings::StringSize80& str1, const E& e, const A& a, const S& s ) { // TODO }