diff options
author | fcolin | 2007-02-01 13:02:56 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:02:56 +0000 |
commit | 5346e5f9ebe3b4047b6b2a0971fe2fc9b908c204 (patch) | |
tree | eeffcfc8f91e926c26055b549788dc0e6a1f747e /Bus/Ivy | |
parent | b06bf348dcbf0db65f8234b90633d330eecd7a5f (diff) | |
download | ivy-cplusplus-5346e5f9ebe3b4047b6b2a0971fe2fc9b908c204.zip ivy-cplusplus-5346e5f9ebe3b4047b6b2a0971fe2fc9b908c204.tar.gz ivy-cplusplus-5346e5f9ebe3b4047b6b2a0971fe2fc9b908c204.tar.bz2 ivy-cplusplus-5346e5f9ebe3b4047b6b2a0971fe2fc9b908c204.tar.xz |
Utilisateur : Fcolin Date : 18/11/05 Heure : 11:46 Archivé dans $/Bus/Ivy Commentaire: repassage a la STL et correction bug multithread (vss 15)
Diffstat (limited to 'Bus/Ivy')
-rw-r--r-- | Bus/Ivy/IvyStdAfx.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Bus/Ivy/IvyStdAfx.h b/Bus/Ivy/IvyStdAfx.h index 13d097c..1c0821b 100644 --- a/Bus/Ivy/IvyStdAfx.h +++ b/Bus/Ivy/IvyStdAfx.h @@ -45,8 +45,21 @@ struct ip_mreq { #define IN_CLASSD(i) (((long)(i) & 0xf0000000) == 0xe0000000)
#endif
+#ifdef IVY_USE_OWN_DATATYPES
+
#include "DataTypes.h"
+#else
+
+#include <string>
+#include <list>
+#include <vector>
+
+namespace ivy = std;
+
+#endif
+
+
#ifdef WIN32
#ifndef TRACE
|