622d3830f1
* feat: Make Frame Processor Plugins object-oriented on iOS as well * Add Plugin in AppDelegate
21 lines
459 B
Objective-C
21 lines
459 B
Objective-C
//
|
|
// FrameProcessorPluginRegistry.h
|
|
// VisionCamera
|
|
//
|
|
// Created by Marc Rousavy on 24.03.21.
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "Frame.h"
|
|
#import "FrameProcessorPlugin.h"
|
|
|
|
@interface FrameProcessorPluginRegistry : NSObject
|
|
|
|
+ (NSMutableDictionary<NSString*, FrameProcessorPlugin*>*)frameProcessorPlugins;
|
|
+ (void) addFrameProcessorPlugin:(FrameProcessorPlugin*)plugin;
|
|
|
|
@end
|