source: XMLIO_V2/dev/dev_rv/src/xmlioserver_spl.hpp @ 146

Last change on this file since 146 was 146, checked in by hozdoba, 13 years ago
File size: 891 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/// Macro ///
28#define UNUSED(parameter)
29
30/// Définition de types (issus de la bibliothÚque standard)///
31typedef std::ostringstream StdOStringStream;
32typedef std::istringstream StdIStringStream;
33typedef std::ofstream      StdOFStream;
34typedef std::ifstream      StdIFStream;
35typedef std::ostream       StdOStream;
36typedef std::istream       StdIStream;
37typedef std::string        StdString;
38typedef std::size_t        StdSize;
39
40/// xmlioserver headers ///
41#include "configure.hpp"
42
43#endif //__XMLIO_SPL__
Note: See TracBrowser for help on using the repository browser.