forked from mia/Aegisub
3225ae39f4
A missing header (acconf.h) issue was introduced in34575a9786
In419386aadd
, some new source files have been added but not added to the file list in Makefile
43 lines
794 B
C++
43 lines
794 B
C++
#ifdef __cplusplus
|
|
#if !defined(_WIN32) && !defined(CMAKE_BUILD)
|
|
#include "../acconf.h"
|
|
#endif
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
// Common C
|
|
#include <cassert>
|
|
#include <cerrno>
|
|
#include <climits>
|
|
#include <cmath>
|
|
#include <cstdint>
|
|
#include <ctime>
|
|
|
|
// Common C++
|
|
#ifdef _MSC_VER
|
|
#pragma warning(push)
|
|
#pragma warning(disable:4996)
|
|
#endif
|
|
|
|
#include <algorithm>
|
|
#include <functional>
|
|
#include <iterator>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <numeric>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(pop)
|
|
#endif
|
|
|
|
// Boost
|
|
#include <boost/range/algorithm.hpp>
|
|
#include <boost/range/irange.hpp>
|
|
#include <boost/regex.hpp>
|
|
#define BOOST_NO_SCOPED_ENUMS
|
|
#include <boost/filesystem.hpp>
|
|
#undef BOOST_NO_SCOPED_ENUMS
|
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
|
#endif
|