#pragma once #include #include #include "../shape/Shape.h" class FrameConsumer { public: virtual void addFrame(std::vector>& frame, bool force = true) = 0; };