00001 // ** LICENSE BLOCK ** 00002 // 00003 // AMPlayable.h 00004 // aria 00005 // 00006 // Created by Yohan Lasorsa on 01/07/09. 00007 // Copyright 2009 INRIA, Team WAM. All rights reserved. 00008 // 00009 00010 #import <Foundation/Foundation.h> 00011 00012 00016 @protocol AMPlayable 00017 00022 - (id)start; 00023 00028 - (id)stop; 00029 00034 - (BOOL)isPlaying; 00035 00040 - (double)getDuration; 00041 00042 @end