Imported Upstream version 0.18.1.1
[platform/upstream/gettext.git] / gettext-tools / examples / hello-objc-gnustep / Hello.h
1 /* Example for use of GNU gettext.
2    This file is in the public domain.
3
4    Interface of the Hello class.  */
5
6 #include <AppKit/AppKit.h>
7
8 @interface Hello : NSObject
9 {
10   NSWindow *window;
11
12   NSTextField *label1;
13   NSTextField *label2;
14
15   id okButton;
16 }
17
18 - (id)init;
19 - (void)dealloc;
20
21 - (void)makeKeyAndOrderFront;
22
23 - (void)done;
24
25 @end
26
27 @interface Hello (UIBuilder)
28
29 - (void)createUI;
30
31 @end