27 lines
363 B
Objective-C
27 lines
363 B
Objective-C
//
|
|
// Mat+QuickLook.h
|
|
//
|
|
// Created by Giles Payne on 2021/07/18.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
#import "opencv2/core.hpp"
|
|
#else
|
|
#define CV_EXPORTS
|
|
#endif
|
|
|
|
#import "Mat.h"
|
|
#import <Foundation/Foundation.h>
|
|
#import <AppKit/AppKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
CV_EXPORTS @interface Mat (QuickLook)
|
|
|
|
- (id)debugQuickLookObject;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|