//
//  touchlesslib.h
//  touchlesslib
//
//  Created by Kolmar Kafran on 14/12/22.
//

#import <Foundation/Foundation.h>

//! Project version number for touchlesslib.
FOUNDATION_EXPORT double touchlesslibVersionNumber;

//! Project version string for touchlesslib.
FOUNDATION_EXPORT const unsigned char touchlesslibVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <touchlesslib/PublicHeader.h>

// Because Objective-C is such a relaxed unsafe language we setted
// Apple Clang - Warning Policies > Treat Warnings as Errors = Yes
// on the Build Settings for the Target touchlesslib on this project
// to avoid silly bugs.
//
// Here we disable the warning about double quoted include in framework header
// otherwise we can't compile. It started complening when we importing a Protocol
// from Swift through the <touchlesslib/touchlesslib-Swift.h>.
//#pragma clang diagnostic push
//#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
//#import "BPTouchlessFingerEngine.h"
//#pragma clang diagnostic pop
