calcolatrice/Calcolatrice/Normale.h

17 lines
373 B
C
Raw Normal View History

2013-07-22 17:02:52 +02:00
#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