2019-02-13 14:10:36 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
#include "UTF8Util.h"
|
|
|
|
|
|
|
|
using std::shared_ptr;
|
2019-03-10 17:39:14 -04:00
|
|
|
using std::unique_ptr;
|
2019-02-13 14:10:36 -05:00
|
|
|
using utf8::ifstream;
|
|
|
|
using utf8::ofstream;
|
2019-03-12 09:15:57 -04:00
|
|
|
using std::ostream;
|
|
|
|
using std::istream;
|
2019-02-13 14:10:36 -05:00
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
using std::atomic;
|
|
|
|
using std::atomic_flag;
|