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

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

Mise à jour depuis un autre dépôt

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