Add empty stub implementation of ImageAssembler

This commit is contained in:
2020-05-27 14:11:21 +02:00
parent 5a7efaf1d0
commit 75c1724740
+43
View File
@@ -1 +1,44 @@
#include "ImageAssembler.hpp"
ImageAssembler::ImageAssembler()
{
}
ImageAssembler::~ImageAssembler()
{
}
void ImageAssembler::process(
const int slot_id,
const int i_module,
const BufferBinaryBlock* block_buffer)
{
}
void ImageAssembler::get_free_slot()
{
}
void ImageAssembler::get_full_slot()
{
}
void ImageAssembler::free_slot(const int slot_id)
{
}
char* ImageAssembler::get_data_buffer(const int slot_id)
{
}
ImageMetadataBlock* ImageAssembler::get_metadata_buffer(const int slot_id)
{
}