2014-06-10 20:58:37 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-08-29 01:01:18 +00:00
|
|
|
#include <string.h>
|
2014-06-10 20:58:37 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include <iostream>
|
2014-06-17 22:16:49 +00:00
|
|
|
#include <iomanip>
|
2014-06-10 20:58:37 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
2014-06-24 20:16:23 +00:00
|
|
|
#include <cctype>
|
2014-06-10 20:58:37 +00:00
|
|
|
#include <memory>
|
2014-06-14 03:12:56 +00:00
|
|
|
#include <vector>
|
2014-06-14 15:27:55 +00:00
|
|
|
#include <array>
|
2014-06-14 22:20:56 +00:00
|
|
|
#include <sstream>
|
2014-07-06 23:54:47 +00:00
|
|
|
#include <list>
|
2015-07-02 03:17:14 +00:00
|
|
|
#include <atomic>
|
2014-06-10 20:58:37 +00:00
|
|
|
|
2015-07-11 12:27:22 +00:00
|
|
|
#include "../Utilities/UTF8Util.h"
|
|
|
|
|
2014-06-14 15:27:55 +00:00
|
|
|
using std::vector;
|
|
|
|
using std::shared_ptr;
|
|
|
|
using std::unique_ptr;
|
|
|
|
using std::ios;
|
2014-07-01 16:44:01 +00:00
|
|
|
using std::istream;
|
|
|
|
using std::ostream;
|
|
|
|
using std::stringstream;
|
2015-07-11 12:27:22 +00:00
|
|
|
using utf8::ifstream;
|
|
|
|
using utf8::ofstream;
|
2014-07-06 23:54:47 +00:00
|
|
|
using std::list;
|
2014-07-09 22:29:07 +00:00
|
|
|
using std::max;
|
2015-07-02 03:17:14 +00:00
|
|
|
using std::string;
|
|
|
|
using std::atomic_flag;
|
|
|
|
using std::atomic;
|