2014-06-23 19:02:09 -04:00
|
|
|
#pragma once
|
|
|
|
|
2014-06-29 16:51:58 -04:00
|
|
|
#include <string>
|
2014-07-09 18:29:07 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2014-06-29 16:51:58 -04:00
|
|
|
#include <iostream>
|
2019-12-31 20:23:26 -05:00
|
|
|
#include <cstring>
|
2014-06-29 16:51:58 -04:00
|
|
|
#include <memory>
|
2014-07-02 20:28:29 -04:00
|
|
|
#include <vector>
|
2014-07-06 19:54:47 -04:00
|
|
|
#include <atomic>
|
2014-06-29 16:51:58 -04:00
|
|
|
|
2015-07-11 08:27:22 -04:00
|
|
|
#include "UTF8Util.h"
|
|
|
|
|
2014-06-29 16:51:58 -04:00
|
|
|
using std::shared_ptr;
|
2020-02-04 19:36:15 -05:00
|
|
|
using std::unique_ptr;
|
2015-07-11 08:27:22 -04:00
|
|
|
using utf8::ifstream;
|
2015-07-11 10:01:06 -04:00
|
|
|
using utf8::ofstream;
|
2014-06-29 16:51:58 -04:00
|
|
|
using std::string;
|
2014-07-02 20:28:29 -04:00
|
|
|
using std::vector;
|
2015-07-01 23:17:14 -04:00
|
|
|
using std::atomic;
|
|
|
|
using std::atomic_flag;
|