17 lines
461 B
C++
17 lines
461 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JFJOCH_TESTIMAGEPULLER_H
|
|
#define JFJOCH_TESTIMAGEPULLER_H
|
|
|
|
#include "ImagePuller.h"
|
|
|
|
class TestImagePuller : public ImagePuller {
|
|
public:
|
|
TestImagePuller(size_t fifo_size = DefaultQueueSize);
|
|
void Put(const ImagePullerOutput& output);
|
|
void Disconnect() override;
|
|
};
|
|
|
|
#endif //JFJOCH_TESTIMAGEPULLER_H
|