hammerspoon/Pods/MIKMIDI/Source/MIKMIDICommandScheduler.h

29 lines
583 B
Objective-C

//
// MIKMIDICommandScheduler.h
// MIKMIDI
//
// Created by Chris Flesner on 7/3/15.
// Copyright (c) 2015 Mixed In Key. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MIKMIDICompilerCompatibility.h"
@class MIKMIDICommand;
NS_ASSUME_NONNULL_BEGIN
/**
* Objects that conform to this protocol can be used as a destination for MIDI commands to
* be sent to by MIKMIDISequencer.
*
* @see MIKMIDISequencer
*/
@protocol MIKMIDICommandScheduler <NSObject>
- (void)scheduleMIDICommands:(MIKArrayOf(MIKMIDICommand *) *)commands;
@end
NS_ASSUME_NONNULL_END