Changed LICENSE. Now referenced to web site and file on project root directory
[anna.git] / include / anna / html / html.hpp
1 // ANNA - Anna is Not Nothingness Anymore                                                         //
2 //                                                                                                //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo                         //
4 //                                                                                                //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite                           //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7
8
9 #ifndef anna_html_html_hpp
10 #define anna_html_html_hpp
11
12 namespace anna {
13 /**
14 Proporciona las clases necesarias para la interpretacion de documentos HTML.
15
16 El ejecutable deberia enlazarse con las librerias:
17    \li libanna.core.a
18    \li libanna.xml.a
19    \li libanna.html.a
20
21 \warning Antes de utilizar cualquier clase de este paquete hay que invocar a anna::html::functions::initialize.
22
23 El <b>Packet Header</b> es anna.html.h
24 */
25 namespace html {
26 }
27 }
28
29
30 #include <anna/html/Attribute.h>
31 #include <anna/html/Compiler.h>
32 #include <anna/html/DocumentFile.h>
33 #include <anna/html/DocumentMemory.h>
34 #include <anna/html/Parser.h>
35 #include <anna/html/Node.h>
36 #include <anna/html/functions.h>
37
38 using namespace anna::html;
39
40 #endif
41