• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* libcroco - Library for parsing and applying CSS
2  * Copyright (C) 2006-2019 Free Software Foundation, Inc.
3  *
4  * This file is not part of the GNU gettext program, but is used with
5  * GNU gettext.
6  *
7  * The original copyright notice is as follows:
8  */
9 
10 /*
11  * This file is part of The Croco Library
12  *
13  * Copyright (C) 2002-2003 Dodji Seketeli <dodji@seketeli.org>
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of version 2.1 of the GNU Lesser General Public
17  * License as published by the Free Software Foundation.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
27  * USA
28  */
29 
30 #ifndef __LIBCROCO_H__
31 #define __LIBCROCO_H__
32 
33 #include "libcroco-config.h"
34 
35 #include "cr-utils.h"
36 #include "cr-pseudo.h"
37 #include "cr-term.h"
38 #include "cr-attr-sel.h"
39 #include "cr-simple-sel.h"
40 #include "cr-selector.h"
41 #include "cr-enc-handler.h"
42 #include "cr-doc-handler.h"
43 #include "cr-input.h"
44 #include "cr-parser.h"
45 #include "cr-statement.h"
46 #include "cr-stylesheet.h"
47 #include "cr-om-parser.h"
48 #include "cr-prop-list.h"
49 #include "cr-sel-eng.h"
50 #include "cr-style.h"
51 #include "cr-string.h"
52 
53 #endif /*__LIBCROCO_H__*/
54