// // MPT_Pair.h // AUCoderDemo // // Created by Andrew Salamon on 5/19/06. // Copyright (c) 2006 Machine Perception Laboratory // University of California San Diego. // #import @interface MPT_Pair : NSObject { id first; id second; } + (MPT_Pair *)pairWith:(id)_first and:(id)_second; - (id)initWith:(id)_first and:(id)_second; - (id)first; - (id)second; @end