source: XMLIO_V2/dev/dev_rv/src/XMLIO/xmlio.hpp @ 113

Last change on this file since 113 was 112, checked in by hozdoba, 14 years ago

Réorganisation du code source (suppression des préfixes xmlio_ redondants)
Simplification de la gestion des groupes (ajout d'une macro dans le fichier d'entête declare_group.hpp).

File size: 1.0 KB
Line 
1#ifndef __XMLIO__
2#define __XMLIO__
3
4/// Entêtes STL ///
5#include <utility>
6#include <string>
7
8#include <vector>
9#include <set>
10
11#include <iostream>
12#include <fstream>
13
14/// Entêtes Poco ///
15#include <Poco/Exception.h>
16#include <Poco/HashMap.h>
17#include <Poco/Hash.h>
18
19/// Entête Blitz array ///
20#include <blitz/array.h>
21
22/// Entêtes créés dans le cadre du projet XMLIOSERVER. ///
23#include "exception.hpp"
24#include "logger.hpp"
25#include "container.hpp"
26#include "abstract_object.hpp"
27#include "xml_node.hpp"
28#include "object_template.hpp"
29
30// Gestion des attributs des objets.
31#include "grid_attribut.hpp"
32#include "axis_attribut.hpp"
33#include "field_attribut.hpp"
34#include "file_attribut.hpp"
35
36#include "group_template.hpp"
37#include "declare_group.hpp"
38
39// Prise en charge des champs...
40#include "field.hpp"
41// Prise en charge des fichiers ...
42#include "file.hpp"
43// Prise en charge des axes ...
44#include "axis.hpp"
45// Prise en charge des grilles ...
46#include "grid.hpp"
47
48#include "context.hpp"
49#include "xml_parser.hpp"
50
51#endif // __XMLIO__
Note: See TracBrowser for help on using the repository browser.