Allow mapping names to be auto-set based on bundleand executable path names as well...
[enjoyable.git] / Categories / NSRunningApplication+NJPossibleNames.h
1 //
2 // NSRunningApplication+NJPossibleNames.h
3 // Enjoyable
4 //
5 // Created by Joe Wreschnig on 3/8/13.
6 //
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface NSRunningApplication (NJPossibleNames)
12
13 - (NSArray *)possibleMappingNames;
14 // Return a list of mapping names this application could match.
15
16 - (NSString *)bestMappingName;
17 // Return the best mapping name, taking into account ways in which
18 // application names are often broken.
19
20 @end