This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
op25-legacy/blocks/src/lib/data_unit_handler.cc

20 lines
268 B
C++

#include "data_unit_handler.h"
data_unit_handler::~data_unit_handler()
{
}
void
data_unit_handler::handle(data_unit_sptr du)
{
if(d_next) {
d_next->handle(du);
}
}
data_unit_handler::data_unit_handler(data_unit_handler_sptr next) :
d_next(next)
{
}