mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 11:42:30 +00:00
17 lines
299 B
Objective-C
17 lines
299 B
Objective-C
//
|
|
// MPFirstResonderNotification.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 20.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol MPFirstResonderNotification <NSObject>
|
|
|
|
@required
|
|
- (BOOL)becomeFirstResponder;
|
|
|
|
@end
|