fpp/compiler/tools/fpp-to-cpp/test/component/impl/ActiveTelemetry.template.ref.hpp
Robert L. Bocchino Jr b765cb4b34 Revise generated C++ code
Replace uses of native types for port numbers
2024-02-27 15:28:45 -08:00

186 lines
5.7 KiB
C++

// ======================================================================
// \title ActiveTelemetry.hpp
// \author [user name]
// \brief hpp file for ActiveTelemetry component implementation class
// ======================================================================
#ifndef ActiveTelemetry_HPP
#define ActiveTelemetry_HPP
#include "ActiveTelemetryComponentAc.hpp"
class ActiveTelemetry :
public ActiveTelemetryComponentBase
{
public:
// ----------------------------------------------------------------------
// Component construction and destruction
// ----------------------------------------------------------------------
//! Construct ActiveTelemetry object
ActiveTelemetry(
const char* const compName //!< The component name
);
//! Destroy ActiveTelemetry object
~ActiveTelemetry();
PRIVATE:
// ----------------------------------------------------------------------
// Handler implementations for user-defined typed input ports
// ----------------------------------------------------------------------
//! Handler implementation for noArgsAsync
//!
//! A typed async input port
void noArgsAsync_handler(
FwIndexType portNum //!< The port number
) override;
//! Handler implementation for noArgsGuarded
//!
//! A typed guarded input
void noArgsGuarded_handler(
FwIndexType portNum //!< The port number
) override;
//! Handler implementation for noArgsReturnGuarded
//!
//! A typed guarded input
U32 noArgsReturnGuarded_handler(
FwIndexType portNum //!< The port number
) override;
//! Handler implementation for noArgsReturnSync
//!
//! A typed sync input port
U32 noArgsReturnSync_handler(
FwIndexType portNum //!< The port number
) override;
//! Handler implementation for noArgsSync
//!
//! A typed sync input port
void noArgsSync_handler(
FwIndexType portNum //!< The port number
) override;
//! Handler implementation for typedAsync
//!
//! A typed async input port
void typedAsync_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedPortStrings::StringSize80& str1, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
//! Handler implementation for typedAsyncAssert
//!
//! A typed async input port with queue full behavior and priority
void typedAsyncAssert_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedPortStrings::StringSize80& str1, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
//! Handler implementation for typedAsyncBlockPriority
//!
//! A typed async input port with queue full behavior and priority
void typedAsyncBlockPriority_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedPortStrings::StringSize80& str1, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
//! Handler implementation for typedAsyncDropPriority
//!
//! A typed async input port with queue full behavior and priority
void typedAsyncDropPriority_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedPortStrings::StringSize80& str1, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
//! Handler implementation for typedGuarded
//!
//! A typed guarded input
void typedGuarded_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedPortStrings::StringSize80& str1, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
//! Handler implementation for typedReturnGuarded
//!
//! A typed guarded input with a return type
F32 typedReturnGuarded_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedReturnPortStrings::StringSize80& str2, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
//! Handler implementation for typedReturnSync
//!
//! A typed sync input port with a return type
F32 typedReturnSync_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedReturnPortStrings::StringSize80& str2, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
//! Handler implementation for typedSync
//!
//! A typed sync input port
void typedSync_handler(
FwIndexType portNum, //!< The port number
U32 u32, //!< A U32
F32 f32, //!< An F32
bool b, //!< A boolean
const Ports::TypedPortStrings::StringSize80& str1, //!< A string
const E& e, //!< An enum
const A& a, //!< An array
const S& s //!< A struct
) override;
};
#endif