mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
26 lines
455 B
Objective-C
26 lines
455 B
Objective-C
//
|
|
// MidiManager.h
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 8/6/2021.
|
|
// Copyright © 2021 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
|
|
#ifndef MidiManager_h
|
|
#define MidiManager_h
|
|
|
|
|
|
extern NSString *kMidiSourcesChangedNotification;
|
|
extern NSString *kMidiDestinationsChangedNotification;
|
|
|
|
@interface MidiManager : NSObject
|
|
|
|
@property NSArray *sources;
|
|
@property NSArray *destinations;
|
|
|
|
+(instancetype)sharedManager;
|
|
|
|
@end
|
|
|
|
#endif /* MidiManager_h */
|