source: XMLIO_V2/dev/common/src/xmlio/xmlioserver_spl.hpp @ 219

Last change on this file since 219 was 219, checked in by hozdoba, 13 years ago

Préparation nouvelle arborescence

File size: 1007 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#include <deque>
22
23// Flux.
24#include <iostream>
25#include <fstream>
26#include <sstream>
27
28/// boost headers ///
29//#include <boost/unordered_map.hpp>
30
31/// Map ///
32#define xios_map std::map
33
34/// Macro ///
35#define UNUSED(parameter)
36
37/// Définition de types (issus de la bibliothÚque standard)///
38typedef std::ostringstream StdOStringStream;
39typedef std::istringstream StdIStringStream;
40typedef std::ofstream      StdOFStream;
41typedef std::ifstream      StdIFStream;
42typedef std::ostream       StdOStream;
43typedef std::istream       StdIStream;
44typedef std::string        StdString;
45typedef std::size_t        StdSize;
46
47/// xmlioserver headers ///
48#include "configure.hpp"
49
50#endif //__XMLIO_SPL__
Note: See TracBrowser for help on using the repository browser.