00001 // ** LICENSE BLOCK ** 00002 // 00003 // AMTempoControl.h 00004 // aria 00005 // 00006 // Created by Yohan Lasorsa on 12/08/09. 00007 // Copyright 2009 INRIA, Team WAM. All rights reserved. 00008 // 00009 00010 #import "a2ml.h" 00011 #import "AMControl.h" 00012 #import <Foundation/Foundation.h> 00013 00014 00015 /* Constants of attributes names */ 00016 static const NSString *const AM_TEMPO_CONTROL_ATTRIBUTE_TEMPO = @"tempo"; 00017 00019 enum AMTempoControlAttributes { 00020 AM_TEM_TEMPO = 0 00021 }; 00022 00023 00028 @interface AMTempoControl : AMControl { 00029 // Control attributes 00030 int tempo; 00031 } 00032 00037 @property (nonatomic) int tempo; 00038 00039 @end