No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / examples / hello-objc-gnustep / AppController.h
blob8f7eed4de4e117ddd04fc2ac80394529b7b351f5
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 AppController class. */
7 #include <AppKit/AppKit.h>
9 @class Hello;
11 @interface AppController : NSObject
13 Hello *hello;
16 + (void)initialize;
18 - (id)init;
19 - (void)dealloc;
21 - (void)awakeFromNib;
23 - (void)applicationDidFinishLaunching
24 :(NSNotification *)notif;
26 - (BOOL)applicationShouldTerminate:(id)sender;
27 - (void)applicationWillTerminate:(NSNotification *)notification;
29 - (BOOL)application:(NSApplication *)application openFile:(NSString *)fileName;
31 - (void)showPrefPanel:(id)sender;
32 - (void)showInfoPanel:(id)sender;
34 - (void)showHelloWindow:(id)sender;
36 @end