2023-01-15 17:01:27 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <memory>
|
|
|
|
#include "../shape/Shape.h"
|
|
|
|
|
|
|
|
class FrameConsumer {
|
|
|
|
public:
|
2023-08-28 21:06:21 +00:00
|
|
|
virtual void addFrame(std::vector<std::unique_ptr<Shape>>& frame) = 0;
|
2023-01-15 17:01:27 +00:00
|
|
|
};
|