CSE 335 Project  CSE335
stdafx.h
1 // stdafx.h : include file for standard system include files,
2 // or project specific include files that are used frequently, but
3 // are changed infrequently
4 //
5 
6 #pragma once
7 
8 #include "targetver.h"
9 
10 #include <stdio.h>
11 #include <tchar.h>
12 
13 
14 
15 // TODO: reference additional headers your program requires here
16 
17 #define _CRTDBG_MAP_ALLOC
18 #include <stdlib.h>
19 #include <crtdbg.h>
20 
21 #ifdef _DEBUG
22 #ifndef DBG_NEW
23 #define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
24 #define new DBG_NEW
25 #endif
26 #endif // _DEBUG