#import <Foundation/Foundation.h>
#import "MKNoteSender.h"
#import "MKConductor.h"
#import "MKPerformerDelegate.h"
Go to the source code of this file.
Classes | |
class | MKPerformer |
MKPerformer is an abstract class that defines a mechanism for performing MKNotes during a MusicKit performance. More... | |
Typedefs | |
typedef enum _MKPerformerStatus | MKPerformerStatus |
This enumeration defines the state of a MKPerformer. A MKPerformer may be in one of the following three states:. | |
Enumerations | |
enum | _MKPerformerStatus { MK_inactive, MK_active, MK_paused } |
This enumeration defines the state of a MKPerformer. A MKPerformer may be in one of the following three states:. More... |
enum _MKPerformerStatus |
This enumeration defines the state of a MKPerformer. A MKPerformer may be in one of the following three states:.
MK_inactive | Not yet activated or already deactivated. |
MK_active | MKPerformer has been activated. MKPerformer is either performing (if [MKConductor startPerformance] has been invoked), or will start performing when the performance starts (as soon as [MKConductor startPerformance] is invoked). |
MK_paused | MKPerformer was activated, then paused. |