CSE 335 Project
CSE335
Main Page
Classes
Files
File List
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
Step1
stdafx.h
Generated on Wed Aug 24 2016 20:48:44 for CSE 335 Project by
1.8.11