15 lines
384 B
C++
15 lines
384 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#include "TestImagePuller.h"
|
|
|
|
TestImagePuller::TestImagePuller(size_t fifo_size) : ImagePuller(fifo_size) {}
|
|
|
|
void TestImagePuller::Put(const ImagePullerOutput &output) {
|
|
outside_fifo.Put(output);
|
|
}
|
|
|
|
void TestImagePuller::Disconnect() {
|
|
|
|
}
|