Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-objc-gnustep / Hello.h
blob89458eda2fcc70f444dd8bdb3f5f50368d552b7b
1 /* Example for use of GNU gettext.
2 This file is in the public domain.
4 Interface of the Hello class. */
6 #include <AppKit/AppKit.h>
8 @interface Hello : NSObject
10 NSWindow *window;
12 NSTextField *label1;
13 NSTextField *label2;
15 id okButton;
18 - (id)init;
19 - (void)dealloc;
21 - (void)makeKeyAndOrderFront;
23 - (void)done;
25 @end
27 @interface Hello (UIBuilder)
29 - (void)createUI;
31 @end