2007-06-06 16:12:12 +00:00
|
|
|
// stdafx.h : include file for standard system include files,
|
|
|
|
// or project specific include files that are used frequently, but
|
|
|
|
// are changed infrequently
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
2008-02-25 23:26:50 +00:00
|
|
|
#include <cstdio>
|
2007-06-06 16:12:12 +00:00
|
|
|
#include <tchar.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2008-06-13 08:16:51 +00:00
|
|
|
#include <map>
|
2007-06-28 10:47:28 +00:00
|
|
|
#include <algorithm>
|
2007-06-09 02:32:43 +00:00
|
|
|
#include <fstream>
|
2007-08-12 17:48:05 +00:00
|
|
|
#include "global.h"
|
2007-06-06 16:12:12 +00:00
|
|
|
// TODO: reference additional headers your program requires here
|