Clean ImageAssembler

This commit is contained in:
2020-05-27 14:20:20 +02:00
parent d3ebb5b9d5
commit 29fc304f02
2 changed files with 5 additions and 14 deletions
-10
View File
@@ -24,16 +24,6 @@ void ImageAssembler::process(
}
void ImageAssembler::get_free_slot()
{
}
void ImageAssembler::get_full_slot()
{
}
void ImageAssembler::free_slot(const int slot_id)
{
+5 -4
View File
@@ -13,18 +13,19 @@ class ImageAssembler {
public:
ImageAssembler(const size_t n_modules);
ImageMetadataBlock* get_metadata_buffer(const int slot_id);
virtual ~ImageAssembler();
int get_free_slot();
void process(const int slot_id,
const int i_module,
const BufferBinaryBlock* block_buffer);
int get_free_slot();
int get_full_slot();
void free_slot(const int slot_id);
const char* get_data_buffer(const int slot_id);
ImageMetadataBlock* get_metadata_buffer(const int slot_id);
char* get_data_buffer(const int slot_id);
};