Changed LICENSE. Now referenced to web site and file on project root directory
[anna.git] / include / anna / io / io.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_io_io_hpp
10 #define anna_io_io_hpp
11
12 namespace anna {
13
14 /**
15 Proporciona ciertas clases para facilitar procesos relacionados con entrada/salida.
16
17 El ejecutable debera enlazarse con la libreria:
18 \li libanna.core.a
19 \li libanna.io.a
20
21 El <b>Packet Header</b> es anna.io.h
22
23 \warning Este archivo deberia cargarse unica y exclusivamente desde un fuente C++, nunca debe
24          cargarse desde un header.
25 */
26 namespace io {
27 }
28 }
29
30 #include <anna/io/Directory.hpp>
31 #include <anna/io/BinaryReader.hpp>
32 #include <anna/io/TextReader.hpp>
33 #include <anna/io/functions.hpp>
34
35 using namespace anna::io;
36
37 #endif
38