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

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

Réorganisation du code gérant le calendrier.

File size: 1.2 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// Gestion du calendrier
30#include "duration.hpp"
31#include "date.hpp"
32#include "abstract_calendar.hpp"
33#include "calendar.hpp"
34#include "calendar_utils.hpp"
35
36#include "xml_node.hpp"
37#include "object_template.hpp"
38
39// Gestion des attributs des objets.
40#include "grid_attribut.hpp"
41#include "axis_attribut.hpp"
42#include "field_attribut.hpp"
43#include "file_attribut.hpp"
44
45#include "group_template.hpp"
46#include "declare_group.hpp"
47
48// Prise en charge des champs...
49#include "field.hpp"
50// Prise en charge des fichiers ...
51#include "file.hpp"
52// Prise en charge des axes ...
53#include "axis.hpp"
54// Prise en charge des grilles ...
55#include "grid.hpp"
56
57#include "context.hpp"
58#include "xml_parser.hpp"
59
60#endif // __XMLIO__
Note: See TracBrowser for help on using the repository browser.