// ====================================================================== // \title ActiveEvents.cpp // \author [user name] // \brief cpp file for ActiveEvents component implementation class // ====================================================================== #include "ActiveEvents.hpp" #include "FpConfig.hpp" // ---------------------------------------------------------------------- // Component construction and destruction // ---------------------------------------------------------------------- ActiveEvents :: ActiveEvents(const char* const compName) : ActiveEventsComponentBase(compName) { } ActiveEvents :: ~ActiveEvents() { } // ---------------------------------------------------------------------- // Handler implementations for user-defined typed input ports // ---------------------------------------------------------------------- void ActiveEvents :: noArgsAsync_handler(FwIndexType portNum) { // TODO } void ActiveEvents :: noArgsGuarded_handler(FwIndexType portNum) { // TODO } U32 ActiveEvents :: noArgsReturnGuarded_handler(FwIndexType portNum) { // TODO return } U32 ActiveEvents :: noArgsReturnSync_handler(FwIndexType portNum) { // TODO return } void ActiveEvents :: noArgsSync_handler(FwIndexType portNum) { // TODO } void ActiveEvents :: 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 ActiveEvents :: 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 ActiveEvents :: 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 ActiveEvents :: 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 ActiveEvents :: 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 ActiveEvents :: 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 ActiveEvents :: 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 ActiveEvents :: 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 }