23 lines
643 B
Objective-C
23 lines
643 B
Objective-C
//
|
|
// MIKMIDISourceEndpoint.m
|
|
// MIDI Testbed
|
|
//
|
|
// Created by Andrew Madsen on 3/8/13.
|
|
// Copyright (c) 2013 Mixed In Key. All rights reserved.
|
|
//
|
|
|
|
#import "MIKMIDISourceEndpoint.h"
|
|
#import "MIKMIDIObject_SubclassMethods.h"
|
|
|
|
#if !__has_feature(objc_arc)
|
|
#error MIKMIDISourceEndpoint.m must be compiled with ARC. Either turn on ARC for the project or set the -fobjc-arc flag for MIKMIDISourceEndpoint.m in the Build Phases for this target
|
|
#endif
|
|
|
|
@implementation MIKMIDISourceEndpoint
|
|
|
|
+ (void)load { [MIKMIDIObject registerSubclass:[self class]]; }
|
|
|
|
+ (NSArray *)representedMIDIObjectTypes; { return @[@(kMIDIObjectType_Source)]; }
|
|
|
|
@end
|