summaryrefslogtreecommitdiff
path: root/Bus/Ivy/IvyStdAfx.h
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:02:28 +0000
committerfcolin2007-02-01 13:02:28 +0000
commit7788c706f01bfeb2c45c9c726c0540181b5d8325 (patch)
tree65b4a96c6f16c8290c0fce49d2353159fa87a606 /Bus/Ivy/IvyStdAfx.h
parentc8d2253ee78b2d92ef3db362ba97ed2a2f62bc7d (diff)
downloadivy-cplusplus-7788c706f01bfeb2c45c9c726c0540181b5d8325.zip
ivy-cplusplus-7788c706f01bfeb2c45c9c726c0540181b5d8325.tar.gz
ivy-cplusplus-7788c706f01bfeb2c45c9c726c0540181b5d8325.tar.bz2
ivy-cplusplus-7788c706f01bfeb2c45c9c726c0540181b5d8325.tar.xz
Utilisateur : Fcolin Date : 16/06/00 Heure : 10:14 Créé (vss 1)
Diffstat (limited to 'Bus/Ivy/IvyStdAfx.h')
-rw-r--r--Bus/Ivy/IvyStdAfx.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/Bus/Ivy/IvyStdAfx.h b/Bus/Ivy/IvyStdAfx.h
new file mode 100644
index 0000000..60ed24d
--- /dev/null
+++ b/Bus/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_)