/FSKit/Source/Common/FSKCouple.h
C Header | 17 lines | 7 code | 3 blank | 7 comment | 0 complexity | c8969a93e5bd4cc4aa35a20a8396d26c MD5 | raw file
Possible License(s): BSD-3-Clause
1// 2// FSKCouple.h 3// FSKit 4// 5// Created by Logan Allred on 2/24/08. 6// Copyright 2008 RedBugz Software. All rights reserved. 7// 8 9#import <Foundation/Foundation.h> 10#import "FSKPerson.h" 11 12@interface FSKCouple : NSObject { 13 FSKPerson *person; 14 FSKPerson *spouse; 15} 16 17@end