2018-10-07 03:38:44 +00:00
|
|
|
#pragma once
|
2017-06-10 18:22:40 +00:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
2017-12-29 07:56:31 +00:00
|
|
|
#include <cstdlib>
|
2017-06-10 18:22:40 +00:00
|
|
|
#include <unistd.h>
|
2017-07-23 23:44:17 +00:00
|
|
|
#include <sys/stat.h>
|
2017-06-10 18:22:40 +00:00
|
|
|
#else
|
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
|
|
#endif
|
|
|
|
#ifndef NOMINMAX
|
|
|
|
#define NOMINMAX
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#include <string>
|
2017-11-13 06:13:53 +00:00
|
|
|
#include <string_view>
|
|
|
|
#include <cstring>
|
2017-06-11 05:01:17 +00:00
|
|
|
#include <algorithm>
|
2017-06-10 18:22:40 +00:00
|
|
|
|
2018-12-08 05:18:42 +00:00
|
|
|
namespace hecl {
|
2017-06-10 18:22:40 +00:00
|
|
|
|
2018-12-08 05:18:42 +00:00
|
|
|
} // namespace hecl
|