fpp/compiler/tools/fpp-to-cpp/test/top/no_namespace/NoNamespaceTopologyAc.ref.cpp
2025-12-04 20:37:41 -08:00

77 lines
1.6 KiB
C++
Vendored

// ======================================================================
// \title NoNamespaceTopologyAc.cpp
// \author Generated by fpp-to-cpp
// \brief cpp file for NoNamespace topology
// ======================================================================
#include "NoNamespaceTopologyAc.hpp"
// ----------------------------------------------------------------------
// Helper functions
// ----------------------------------------------------------------------
void initComponents(const TopologyState& state) {
// Nothing to do
}
void configComponents(const TopologyState& state) {
// Nothing to do
}
void setBaseIds() {
// Nothing to do
}
void connectComponents() {
// Nothing to do
}
void regCommands() {
// Nothing to do
}
void readParameters() {
// Nothing to do
}
void loadParameters() {
// Nothing to do
}
void startTasks(const TopologyState& state) {
// Nothing to do
}
void stopTasks(const TopologyState& state) {
// Nothing to do
}
void freeThreads(const TopologyState& state) {
// Nothing to do
}
void tearDownComponents(const TopologyState& state) {
// Nothing to do
}
// ----------------------------------------------------------------------
// Setup and teardown functions
// ----------------------------------------------------------------------
void setup(const TopologyState& state) {
initComponents(state);
configComponents(state);
setBaseIds();
connectComponents();
regCommands();
readParameters();
loadParameters();
startTasks(state);
}
void teardown(const TopologyState& state) {
stopTasks(state);
freeThreads(state);
tearDownComponents(state);
}