// // Frame.h // VisionCamera // // Created by Marc Rousavy on 15.03.21. // Copyright © 2021 mrousavy. All rights reserved. // #pragma once #import // TODO: Make this Objective-C so it can be imported in Swift? class Frame { public: explicit Frame(CMSampleBufferRef buffer): buffer(buffer) {} public: CMSampleBufferRef buffer; };