• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-objc-gnustep/
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
32