00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface CPPair : NSObject
00010 {
00011 NSObject *m_first;
00012 BOOL m_firstIsWrapped;
00013 NSObject *m_second;
00014 BOOL m_secondIsWrapped;
00015 }
00016
00017 + (id)pairWithFirst:(id)fp8 andSecond:(id)fp12;
00018 + (id)pairWithFirstPointer:(id)fp8 andSecond:(id)fp12;
00019 + (id)pairWithFirst:(id)fp8 andSecondPointer:(id)fp12;
00020 + (id)pairWithFirstPointer:(id)fp8 andSecondPointer:(id)fp12;
00021 - (id)initWithFirst:(id)fp8 andSecond:(id)fp12;
00022 - (id)initWithFirstPointer:(id)fp8 andSecond:(id)fp12;
00023 - (id)initWithFirst:(id)fp8 andSecondPointer:(id)fp12;
00024 - (id)initWithFirstPointer:(id)fp8 andSecondPointer:(id)fp12;
00025 - (void)dealloc;
00026 - (BOOL)isEqual:(id)fp8;
00027 - (unsigned int)hash;
00028 - (id)first;
00029 - (id)second;
00030 - (id)description;
00031
00032 @end
00033