Last change
on this file since 2697 was
2697,
checked in by mhedley, 7 weeks ago
|
patches for C compilation
|
-
Property copyright set to
Software name : XIOS (Xml I/O Server) http://forge.ipsl.jussieu.fr/ioserver Creation date : January 2009 Licence : CeCCIL version2 see license file in root directory : Licence_CeCILL_V2-en.txt or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement) CNRS/IPSL (Institut Pierre Simon Laplace) Project Manager : Yann Meurdesoif yann.meurdesoif@cea.fr
|
File size:
1.3 KB
|
Rev | Line | |
---|
[591] | 1 | #ifndef __XIOS_SPL__ |
---|
| 2 | #define __XIOS_SPL__ |
---|
[219] | 3 | |
---|
| 4 | /// standard C++ headers /// |
---|
| 5 | #include <utility> |
---|
| 6 | #include <string> |
---|
| 7 | #include <algorithm> |
---|
[1542] | 8 | #include <unordered_map> |
---|
| 9 | #include <memory> |
---|
[219] | 10 | |
---|
| 11 | // standard C |
---|
| 12 | #include <cstring> |
---|
| 13 | #include <cstdlib> |
---|
| 14 | #include <cmath> |
---|
| 15 | #include <ctime> |
---|
| 16 | |
---|
| 17 | // Conteneurs. |
---|
| 18 | #include <vector> |
---|
[2697] | 19 | #include <array> |
---|
[219] | 20 | #include <set> |
---|
| 21 | #include <stack> |
---|
| 22 | #include <list> |
---|
| 23 | #include <map> |
---|
| 24 | #include <deque> |
---|
[492] | 25 | #include <queue> |
---|
[300] | 26 | #include <valarray> |
---|
[219] | 27 | // Flux. |
---|
| 28 | #include <iostream> |
---|
| 29 | #include <fstream> |
---|
| 30 | #include <sstream> |
---|
| 31 | |
---|
| 32 | /// boost headers /// |
---|
[300] | 33 | #include <boost/cast.hpp> |
---|
[1622] | 34 | #include <boost/current_function.hpp> |
---|
[219] | 35 | /// Map /// |
---|
| 36 | #define xios_map std::map |
---|
| 37 | |
---|
| 38 | /// Macro /// |
---|
| 39 | #define UNUSED(parameter) |
---|
| 40 | |
---|
| 41 | /// Définition de types (issus de la bibliothÚque standard)/// |
---|
| 42 | typedef std::ostringstream StdOStringStream; |
---|
| 43 | typedef std::istringstream StdIStringStream; |
---|
[490] | 44 | typedef std::stringstream StdStringStream; |
---|
[219] | 45 | typedef std::ofstream StdOFStream; |
---|
| 46 | typedef std::ifstream StdIFStream; |
---|
| 47 | typedef std::ostream StdOStream; |
---|
| 48 | typedef std::istream StdIStream; |
---|
| 49 | typedef std::string StdString; |
---|
| 50 | typedef std::size_t StdSize; |
---|
| 51 | |
---|
[300] | 52 | typedef unsigned short int ushort; |
---|
| 53 | typedef unsigned int uint; |
---|
| 54 | typedef unsigned long int ulong; |
---|
| 55 | |
---|
[1158] | 56 | const size_t stringArrayLen=255 ; |
---|
| 57 | |
---|
[591] | 58 | /// XIOS headers /// |
---|
[219] | 59 | #include "configure.hpp" |
---|
[300] | 60 | #include "log.hpp" |
---|
| 61 | using namespace std; |
---|
| 62 | using namespace boost ; |
---|
[219] | 63 | |
---|
[300] | 64 | |
---|
[591] | 65 | #endif //__XIOS_SPL__ |
---|
Note: See
TracBrowser
for help on using the repository browser.