//// UIImageViewTap.h// Momento//// Created by Michael Waterfall on 04/11/2009.// Copyright 2009 d3i. All rights reserved.//#import <Foundation/Foundation.h>@protocolMWTapDetectingImageViewDelegate;@interfaceMWTapDetectingImageView:UIImageView{}@property(nonatomic,weak)id<MWTapDetectingImageViewDelegate>tapDelegate;@end@protocolMWTapDetectingImageViewDelegate<NSObject>@optional-(void)imageView:(UIImageView*)imageViewsingleTapDetected:(UITouch*)touch;-(void)imageView:(UIImageView*)imageViewdoubleTapDetected:(UITouch*)touch;-(void)imageView:(UIImageView*)imageViewtripleTapDetected:(UITouch*)touch;@end