Have device controller setup itself rather than relying on the application delegate...
[enjoyable.git] / Classes / NJInputPathElement.h
1 #import <Foundation/Foundation.h>
2
3 @protocol NJInputPathElement <NSObject>
4
5 - (NSArray *)children;
6 - (id <NJInputPathElement>) base;
7 - (NSString *)name;
8 - (NSString *)uid;
9
10 @end