summaryrefslogtreecommitdiff
path: root/Ivy/IvyStdAfx.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:02:28 +0000
committerfcolin2007-02-01 13:02:28 +0000
commita8fd499421c677da8c2704a6c885da9ad744257e (patch)
treea35d919dc016d677e69cf1aab1b9cf2cb03cba72 /Ivy/IvyStdAfx.h
parent0732202b512ed4093004ec6fbb6caff87492d231 (diff)
downloadivy-cplusplus-a8fd499421c677da8c2704a6c885da9ad744257e.zip
ivy-cplusplus-a8fd499421c677da8c2704a6c885da9ad744257e.tar.gz
ivy-cplusplus-a8fd499421c677da8c2704a6c885da9ad744257e.tar.bz2
ivy-cplusplus-a8fd499421c677da8c2704a6c885da9ad744257e.tar.xz
Utilisateur : Fcolin Date : 16/06/00 Heure : 10:14 Créé (vss 1)
Diffstat (limited to 'Ivy/IvyStdAfx.h')
-rw-r--r--Ivy/IvyStdAfx.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/Ivy/IvyStdAfx.h b/Ivy/IvyStdAfx.h
new file mode 100644
index 0000000..60ed24d
--- /dev/null
+++ b/Ivy/IvyStdAfx.h
@@ -0,0 +1,44 @@
+// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#if !defined(AFX_STDAFX_H__EE0269AE_DB02_11D2_89CA_00A0245B298A__INCLUDED_)
+#define AFX_STDAFX_H__EE0269AE_DB02_11D2_89CA_00A0245B298A__INCLUDED_
+
+#if _MSC_VER > 1000
+#pragma once
+#endif // _MSC_VER > 1000
+#ifdef WIN32
+
+#pragma warning (disable : 4786)
+#pragma warning( disable : 4275 ) // non dll-interface class 'X' used as base for dll-interface class 'Y'
+#pragma warning( disable : 4251 ) // 'm' : class 'X' needs to have dll-interface to be used by clients of class 'Y'
+
+#endif
+
+#include <stdio.h>
+#include <stdarg.h>
+#include <assert.h>
+#include <winsock2.h>
+
+#include <string>
+#include <vector>
+#include <list>
+
+using namespace std;
+
+// Debugging function
+
+#ifndef TRACE
+#ifdef WIN32
+void DebugTrace ( const char *fmt , ... );
+#define TRACE DebugTrace
+#else
+#define TRACE printf
+#endif
+#endif
+//{{AFX_INSERT_LOCATION}}
+// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
+
+#endif // !defined(AFX_STDAFX_H__EE0269AE_DB02_11D2_89CA_00A0245B298A__INCLUDED_)