2014-06-10 16:58:37 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-08-28 21:01:18 -04:00
|
|
|
#include <string.h>
|
2014-06-10 16:58:37 -04:00
|
|
|
#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>
|
2014-06-24 16:16:23 -04:00
|
|
|
#include <cctype>
|
2014-06-10 16:58:37 -04:00
|
|
|
#include <memory>
|
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-07-06 19:54:47 -04:00
|
|
|
#include <list>
|
2015-07-01 23:17:14 -04:00
|
|
|
#include <atomic>
|
2014-06-10 16:58:37 -04:00
|
|
|
|
2015-07-11 08:27:22 -04:00
|
|
|
#include "../Utilities/UTF8Util.h"
|
|
|
|
|
2016-12-22 18:49:24 -05:00
|
|
|
#ifdef __clang__
|
|
|
|
#define __forceinline __attribute__((always_inline))
|
|
|
|
#else
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define __forceinline
|
|
|
|
#endif
|
2016-12-11 14:25:29 -05:00
|
|
|
#endif
|
|
|
|
|
2014-06-14 11:27:55 -04:00
|
|
|
using std::vector;
|
|
|
|
using std::shared_ptr;
|
|
|
|
using std::unique_ptr;
|
|
|
|
using std::ios;
|
2014-07-01 12:44:01 -04:00
|
|
|
using std::istream;
|
|
|
|
using std::ostream;
|
|
|
|
using std::stringstream;
|
2015-07-11 08:27:22 -04:00
|
|
|
using utf8::ifstream;
|
|
|
|
using utf8::ofstream;
|
2014-07-06 19:54:47 -04:00
|
|
|
using std::list;
|
2014-07-09 18:29:07 -04:00
|
|
|
using std::max;
|
2015-07-01 23:17:14 -04:00
|
|
|
using std::string;
|
|
|
|
using std::atomic_flag;
|
|
|
|
using std::atomic;
|