CoreGTK  2.24.0
CoreGTK is an Objective-C language binding for the GTK+ widget toolkit
 All Classes Functions Variables
HelloWorld.h
1 /*
2  * Objective-C imports
3  */
4 #import <Foundation/Foundation.h>
5 #import "CGTK.h"
6 #import "CGTKButton.h"
7 #import "CGTKSignalConnector.h"
8 #import "CGTKWindow.h"
9 
10 /*
11  * C imports
12  */
13 #import <gtk/gtk.h>
14 
15 @interface HelloWorld : NSObject
16 
17 +(void)hello;
18 
19 +(void)destroy;
20 
21 @end
Definition: HelloWorld.h:15