File: AboutBoxController.h

package info (click to toggle)
wcalc 2.2.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,228 kB
  • ctags: 698
  • sloc: ansic: 6,918; objc: 1,835; sh: 766; yacc: 644; lex: 573; makefile: 78
file content (12 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
/* AboutBoxController */

#include <Cocoa/Cocoa.h>

@interface AboutBoxController : NSObject
{
    IBOutlet NSWindow *aboutBox;
	IBOutlet NSTextField *version;
}
- (IBAction)closeIt:(id)sender;
- (IBAction)openIt:(id)sender;
@end