Skip to content

Instantly share code, notes, and snippets.

@vincentlg
Created May 27, 2011 09:26
Show Gist options
  • Save vincentlg/994928 to your computer and use it in GitHub Desktop.
Save vincentlg/994928 to your computer and use it in GitHub Desktop.
Interface du modèle
//
// ClockModel.h
// Clock
//
// Created by Vincent Le Gallic on 27/05/11.
// Copyright 2011 Frianbiz. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ClockModel : NSObject {
NSNumber *hour;
NSNumber *minute;
NSNumber *second;
}
@property (nonatomic, retain) NSNumber *hour;
@property (nonatomic, retain) NSNumber *minute;
@property (nonatomic, retain) NSNumber *second;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment