Improve ImageAssembler interface

This commit is contained in:
2020-05-27 13:07:16 +02:00
parent 3d98a9e908
commit ba383f11f6
+10
View File
@@ -3,6 +3,16 @@
class ImageAssembler {
public:
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(int slot_id);
const ImageMetadataBlock* get_metadata_buffer(int slot_id);
const char* get_data_buffer(int slot_id);
};