1/* Example for use of GNU gettext.
2   Copyright (C) 2003 Free Software Foundation, Inc.
3   This file is in the public domain.
4
5   Interface of the Hello class.  */
6
7#include <AppKit/AppKit.h>
8
9@interface Hello : NSObject
10{
11  NSWindow *window;
12
13  NSTextField *label1;
14  NSTextField *label2;
15
16  id okButton;
17}
18
19- (id)init;
20- (void)dealloc;
21
22- (void)makeKeyAndOrderFront;
23
24- (void)done;
25
26@end
27
28@interface Hello (UIBuilder)
29
30- (void)createUI;
31
32@end
33