/* Jumping.h
 *
 * Defines the method a catcher object must respond to, to interface
 * to the frame stack.
 */

#ifndef JUMPING_H_INCLUDED
#define JUMPING_H_INCLUDED

@protocol Jumping
- (void) jump;
@end /* Jumping */

#endif JUMPING_H_INCLUDED
