Base64Decoder/Base64DecoderAppDelegate.h
2010-06-29 11:47:31 +02:00

23 lines
512 B
Objective-C

//
// Base64DecoderAppDelegate.h
// Base64Decoder
//
// Created by Jeena on 29.06.10.
// Copyright 2010 Jeena Paradies. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface Base64DecoderAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
IBOutlet NSTextField *input;
IBOutlet NSTextView *output;
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSTextField *input;
@property (assign) IBOutlet NSTextView *output;
- (IBAction)decode:(id)sender;
@end