summaryrefslogtreecommitdiffstats
path: root/gettext-tools/examples/hello-objc-gnustep/Hello.h
diff options
context:
space:
mode:
Diffstat (limited to 'gettext-tools/examples/hello-objc-gnustep/Hello.h')
-rw-r--r--gettext-tools/examples/hello-objc-gnustep/Hello.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/gettext-tools/examples/hello-objc-gnustep/Hello.h b/gettext-tools/examples/hello-objc-gnustep/Hello.h
new file mode 100644
index 0000000..ddab89c
--- /dev/null
+++ b/gettext-tools/examples/hello-objc-gnustep/Hello.h
@@ -0,0 +1,32 @@
+/* Example for use of GNU gettext.
+ Copyright (C) 2003 Free Software Foundation, Inc.
+ This file is in the public domain.
+
+ Interface of the Hello class. */
+
+#include <AppKit/AppKit.h>
+
+@interface Hello : NSObject
+{
+ NSWindow *window;
+
+ NSTextField *label1;
+ NSTextField *label2;
+
+ id okButton;
+}
+
+- (id)init;
+- (void)dealloc;
+
+- (void)makeKeyAndOrderFront;
+
+- (void)done;
+
+@end
+
+@interface Hello (UIBuilder)
+
+- (void)createUI;
+
+@end