No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / examples / hello-objc-gnustep / Hello.h
blobddab89cf54fa80d07aad71b612968eee803c03e6
1 /* Example for use of GNU gettext.
2 Copyright (C) 2003 Free Software Foundation, Inc.
3 This file is in the public domain.
5 Interface of the Hello class. */
7 #include <AppKit/AppKit.h>
9 @interface Hello : NSObject
11 NSWindow *window;
13 NSTextField *label1;
14 NSTextField *label2;
16 id okButton;
19 - (id)init;
20 - (void)dealloc;
22 - (void)makeKeyAndOrderFront;
24 - (void)done;
26 @end
28 @interface Hello (UIBuilder)
30 - (void)createUI;
32 @end