diff options
author | Robert Staudinger <robsta@gnome.org> | 2008-11-07 14:09:00 +0100 |
---|---|---|
committer | Robert Staudinger <robsta@gnome.org> | 2008-11-07 14:09:00 +0100 |
commit | eebeb554e6a4cf579a2375c8541954fab3c6b35e (patch) | |
tree | 2ef656eb818d31ab672957e58d8a135985ff6012 /ccss-gtk/ccss-gtk.h | |
parent | 65ddbc3a2a9fa31bb2ac81269343b68797e323aa (diff) |
* Makefile.am:
* cccss/Makefile.am:
* ccss-gtk/Makefile.am:
* ccss-gtk/ccss-gtk-style.c (ccss_style_draw_gap),
(ccss_style_draw_polygon):
* ccss-gtk/ccss-gtk-style.h:
* ccss-gtk/ccss-gtk.h:
* ccss-gtk/ccss-gtk.sym:
* ccss/Makefile.am:
* ccss/ccss-gtk-style.c:
* ccss/ccss-gtk-style.h:
* ccss/ccss-gtk.sym.in:
* ccss/ccss.sym:
* ccss/ccss.sym.in:
* configure.in:
* examples/Makefile.am:
* libccss-gtk-1.pc.in:
Library split-up, step 2: split out gtk dependent code into separate library.
Diffstat (limited to 'ccss-gtk/ccss-gtk.h')
-rw-r--r-- | ccss-gtk/ccss-gtk.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ccss-gtk/ccss-gtk.h b/ccss-gtk/ccss-gtk.h new file mode 100644 index 0000000..455c23d --- /dev/null +++ b/ccss-gtk/ccss-gtk.h @@ -0,0 +1,27 @@ +/* The Cairo CSS Drawing Library. + * Copyright (C) 2008 Robert Staudinger + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + +#ifndef CCSS_GTK_H +#define CCSS_GTK_H + +#include <ccss/ccss.h> +#include <ccss-gtk/ccss-gtk-style.h> + +#endif /* CCSS_GTK_H */ + |