2007-06-06 19:12:12 +03: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
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2007-06-28 13:47:28 +03:00
|
|
|
#include <algorithm>
|
2007-06-09 05:32:43 +03:00
|
|
|
#include <fstream>
|
2007-08-12 20:48:05 +03:00
|
|
|
#include "global.h"
|
2007-06-06 19:12:12 +03:00
|
|
|
// TODO: reference additional headers your program requires here
|