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

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

Gestion du calendrier, quelques modifications en cours avant d'arriver à une version correcte.

(calendar.old² sera supprimé par la suite)

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