initial commit
This commit is contained in:
parent
61f82ba7a4
commit
3b2d6d3f3e
12 changed files with 6904 additions and 0 deletions
23
Base64DecoderAppDelegate.h
Normal file
23
Base64DecoderAppDelegate.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue