2014-06-10 16:58:37 -04: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
|
|
|
|
|
|
|
|
#include "targetver.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <iostream>
|
2014-06-17 18:16:49 -04:00
|
|
|
#include <iomanip>
|
2014-06-10 16:58:37 -04:00
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
|
|
|
#include <thread>
|
2014-06-13 23:12:56 -04:00
|
|
|
#include <vector>
|
2014-06-14 11:27:55 -04:00
|
|
|
#include <array>
|
2014-06-14 18:20:56 -04:00
|
|
|
#include <sstream>
|
2014-06-10 16:58:37 -04:00
|
|
|
|
2014-06-18 22:54:23 -04:00
|
|
|
#include <atomic>
|
|
|
|
|
2014-06-10 16:58:37 -04:00
|
|
|
#include <windows.h>
|
|
|
|
|
2014-06-14 11:27:55 -04:00
|
|
|
using std::vector;
|
|
|
|
using std::shared_ptr;
|
|
|
|
using std::unique_ptr;
|
|
|
|
using std::ios;
|
|
|
|
using std::ifstream;
|
2014-06-22 08:38:42 -04:00
|
|
|
using std::ofstream;
|
2014-06-20 21:48:55 -04:00
|
|
|
using std::wstring;
|
2014-06-18 22:54:23 -04:00
|
|
|
using std::exception;
|
|
|
|
using std::atomic;
|