17 lines
373 B
C
17 lines
373 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface Normale : NSObject
|
||
|
{
|
||
|
NSInteger operazioneCorrente;
|
||
|
NSNumber *numero1, *numero2;
|
||
|
}
|
||
|
|
||
|
@property (retain) IBOutlet NSTextField *casella;
|
||
|
|
||
|
- (IBAction) calcolaRisultato: (id) sender;
|
||
|
- (IBAction) cancellaCasella: (id) sender;
|
||
|
- (IBAction) inviaCifra: (id) sender;
|
||
|
- (IBAction) inviaOperazione: (id) sender;
|
||
|
|
||
|
@end
|