source: XMLIO_V2/dev/dev_rv/src/xmlio/xmlioserver_spl.hpp @ 154

Last change on this file since 154 was 152, checked in by hozdoba, 13 years ago
File size: 990 bytes
Line 
1#ifndef __XMLIO_SPL__
2#define __XMLIO_SPL__
3
4/// standard C++ headers ///
5#include <utility>
6#include <string>
7#include <algorithm>
8
9// standard C
10#include <cstring>
11#include <cstdlib>
12#include <cmath>
13#include <ctime>
14
15// Conteneurs.
16#include <vector>
17#include <set>
18#include <stack>
19#include <list>
20#include <map>
21
22// Flux.
23#include <iostream>
24#include <fstream>
25#include <sstream>
26
27/// boost headers ///
28//#include <boost/unordered_map.hpp>
29
30/// Map ///
31#define xios_map std::map
32
33/// Macro ///
34#define UNUSED(parameter)
35
36/// Définition de types (issus de la bibliothÚque standard)///
37typedef std::ostringstream StdOStringStream;
38typedef std::istringstream StdIStringStream;
39typedef std::ofstream      StdOFStream;
40typedef std::ifstream      StdIFStream;
41typedef std::ostream       StdOStream;
42typedef std::istream       StdIStream;
43typedef std::string        StdString;
44typedef std::size_t        StdSize;
45
46/// xmlioserver headers ///
47#include "configure.hpp"
48
49#endif //__XMLIO_SPL__
Note: See TracBrowser for help on using the repository browser.