mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 18:42:24 +00:00
17 lines
361 B
Objective-C
17 lines
361 B
Objective-C
//
|
|
// DDHotKey+Coding.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 25/03/14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "DDHotKeyCenter.h"
|
|
|
|
@interface DDHotKey (Keydata)
|
|
|
|
- (NSData *)keyData;
|
|
- (instancetype)initWithKeyData:(NSData *)data taks:(DDHotKeyTask)task;
|
|
- (instancetype)initWithKeyData:(NSData *)data;
|
|
@end
|