Removed RCS-style IDs.
[ruby-evas.git] / src / rb_evas_main.c
1 /*
2  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include <ruby.h>
20
21 #include <Evas.h>
22
23 #include "rb_evas_main.h"
24 #include "rb_evas.h"
25 #include "rb_evas_object.h"
26 #include "rb_evas_object_events.h"
27 #include "rb_rectangle.h"
28 #include "rb_line.h"
29 #include "rb_gradient.h"
30 #include "rb_polygon.h"
31 #include "rb_image.h"
32 #include "rb_text.h"
33 #include "rb_smart.h"
34
35 void Init_evas (void)
36 {
37         mEvas = rb_define_module ("Evas");
38
39         Init_Evas ();
40         Init_EvasObject ();
41         Init_EvasObjectEvents ();
42         Init_Rectangle ();
43         Init_Line ();
44         Init_Gradient ();
45         Init_Polygon ();
46         Init_Image ();
47         Init_Text ();
48         Init_Smart ();
49 }