File: AboutBoxController.h

package info (click to toggle)
wcalc 2.4-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,916 kB
  • sloc: ansic: 7,089; objc: 2,002; sh: 890; lex: 816; yacc: 641; makefile: 103
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