initial commit

This commit is contained in:
Jeena Paradies 2010-06-29 11:47:31 +02:00
parent 61f82ba7a4
commit 3b2d6d3f3e
12 changed files with 6904 additions and 0 deletions

View file

@ -0,0 +1,23 @@
//
// 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