darling-cocotron/Security/SecAccess.h
2020-05-12 17:04:15 -04:00

20 lines
374 B
Objective-C

//
// SecAccess.h
// Security
//
// Created by Christopher Lloyd on 2/12/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SecAccess : NSObject {
CFStringRef _descriptor;
CFArrayRef _trustedList;
}
- initWithDescriptor: (CFStringRef) descriptor
trustedList: (CFArrayRef) trustedList;
@end