cpp/frameReceiver/src/DummyTCPFrameDecoderLib.cpp
/*
* DummyTCPFrameDecoderLib.cpp
*
* Created on: 24 Apr 2024
* Author: James Souter, Diamond Light Source
*/
#include "DummyTCPFrameDecoder.h"
#include "ClassLoader.h"
namespace FrameReceiver
{
/**
* Registration of this decoder through the ClassLoader. This macro
* registers the class without needing to worry about name mangling
*/
REGISTER(FrameDecoder, DummyTCPFrameDecoder, "DummyTCPFrameDecoder");
}
// namespace FrameReceiver