/FSKit/Source/Common/FSKCouple.h

http://fskit.googlecode.com/ · C Header · 17 lines · 7 code · 3 blank · 7 comment · 0 complexity · c8969a93e5bd4cc4aa35a20a8396d26c MD5 · raw file

  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. #import <Foundation/Foundation.h>
  9. #import "FSKPerson.h"
  10. @interface FSKCouple : NSObject {
  11. FSKPerson *person;
  12. FSKPerson *spouse;
  13. }
  14. @end