diff options
author | Dodji Seketeli <dodji@gnome.org> | 2004-01-24 19:24:08 +0000 |
---|---|---|
committer | Dodji Seketeli <dodji@src.gnome.org> | 2004-01-24 19:24:08 +0000 |
commit | d058779c836ec6ac56721581dd44d1dd91d3206c (patch) | |
tree | f371ad9e5150f3526edd528e44f990e9d060014c /src/libcroco.h | |
parent | a97a943a32d37e1c92aa93e861a28d96f84f2163 (diff) | |
download | libcroco-d058779c836ec6ac56721581dd44d1dd91d3206c.tar.gz |
separated the library into two projects. Libcroco is now the combination
2004-01-24 Dodji Seketeli <dodji@gnome.org>
* all: separated the library into two projects. Libcroco
is now the combination of the parser and the selection engine.
A new project is born: sewfox. It is basically the
xml rendering/layout engine.
Libcroco now needs libxml2 and glib only.
Sewfox need libgnomecanvas2.
Diffstat (limited to 'src/libcroco.h')
-rw-r--r-- | src/libcroco.h | 41 |
1 files changed, 16 insertions, 25 deletions
diff --git a/src/libcroco.h b/src/libcroco.h index 28a999d..5562511 100644 --- a/src/libcroco.h +++ b/src/libcroco.h @@ -21,31 +21,22 @@ #ifndef __LIBCROCO_H__ #define __LIBCROCO_H__ -#include "parser/libcroco-config.h" +#include "libcroco-config.h" -#include "parser/cr-utils.h" -#include "parser/cr-pseudo.h" -#include "parser/cr-term.h" -#include "parser/cr-attr-sel.h" -#include "parser/cr-simple-sel.h" -#include "parser/cr-selector.h" -#include "parser/cr-enc-handler.h" -#include "parser/cr-doc-handler.h" -#include "parser/cr-input.h" -#include "parser/cr-parser.h" -#include "parser/cr-statement.h" -#include "parser/cr-stylesheet.h" -#include "parser/cr-om-parser.h" - -#ifdef CROCO_SELENG_ENABLED /*The selection engine headers*/ -#include "seleng/cr-sel-eng.h" -#include "seleng/cr-style.h" -#endif /*CROCO_SELENG_ENABLED*/ - -#ifdef CROCO_LAYENG_ENABLED /*the layout engine headers*/ -#include "layeng/cr-box.h" -#include "layeng/cr-box-view.h" -#include "layeng/cr-lay-eng.h" -#endif +#include "cr-utils.h" +#include "cr-pseudo.h" +#include "cr-term.h" +#include "cr-attr-sel.h" +#include "cr-simple-sel.h" +#include "cr-selector.h" +#include "cr-enc-handler.h" +#include "cr-doc-handler.h" +#include "cr-input.h" +#include "cr-parser.h" +#include "cr-statement.h" +#include "cr-stylesheet.h" +#include "cr-om-parser.h" +#include "cr-sel-eng.h" +#include "cr-style.h" #endif /*__LIBCROCO_H__*/ |