-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #2: MIKMIDIMappings can now be loaded from XML on iOS.
- Loading branch information
Showing
7 changed files
with
275 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// MIKMIDIMappingXMLParser.h | ||
// MIDI Soundboard | ||
// | ||
// Created by Andrew Madsen on 4/15/14. | ||
// Copyright (c) 2014 Mixed In Key. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@class MIKMIDIMapping; | ||
|
||
/** | ||
* A parser for XML MIDI mapping files. Only used on iOS. On OS X, NSXMLDocument is used | ||
* directly instead. Should be considered "private" for use by MIKMIDIMapping. | ||
*/ | ||
@interface MIKMIDIMappingXMLParser : NSObject | ||
|
||
+ (instancetype)parserWithXMLData:(NSData *)xmlData; | ||
- (instancetype)initWithXMLData:(NSData *)xmlData; | ||
|
||
@property (nonatomic, strong, readonly) NSArray *mappings; | ||
|
||
@end |
Oops, something went wrong.