Files
MacPass/MacPass/MPServerRequestHandling.h
michael starke 09263b4559 Approprate naming for service protocol
Minor code cleanup
2013-10-20 19:38:57 +02:00

18 lines
326 B
Objective-C

//
// MPServerRequestHandler.h
// MacPass
//
// Created by Michael Starke on 17.06.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol MPServerRequestHandling <NSObject>
@required
- (NSString *)identifier;
- (void)respondTo:(NSDictionary *)data;
@end