//// UIViewTap.h// Momento//// Created by Michael Waterfall on 04/11/2009.// Copyright 2009 d3i. All rights reserved.//#import <Foundation/Foundation.h>@protocolMWTapDetectingViewDelegate;@interfaceMWTapDetectingView:UIView{}@property(nonatomic,weak)id<MWTapDetectingViewDelegate>tapDelegate;@end@protocolMWTapDetectingViewDelegate<NSObject>@optional-(void)view:(UIView*)viewsingleTapDetected:(UITouch*)touch;-(void)view:(UIView*)viewdoubleTapDetected:(UITouch*)touch;-(void)view:(UIView*)viewtripleTapDetected:(UITouch*)touch;@end