diff options
Diffstat (limited to 'Ivy/Ivy.h')
-rw-r--r-- | Ivy/Ivy.h | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -22,10 +22,20 @@ class _declspec(dllimport) CBufferedSocket; #endif
#endif
-#include <windows.h>
+#ifdef IVY_USE_OWN_DATATYPES
#include "DataTypes.h"
+#else
+
+#include <string>
+#include <list>
+#include <vector>
+
+namespace ivy = std;
+
+#endif
+
#include "IvyCallback.h"
|